diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2024-07-24 14:13:55 +0200 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2024-07-24 14:13:55 +0200 |
commit | e29203a60b1c7e0d667e3a912d04c4a715bda6e9 (patch) | |
tree | 9da2aee96dcc3dbd89ae7f12a48be7afb72507f1 | |
parent | 08b6a9ecf922dc7e4a39bcb88ca568f515a7e93b (diff) | |
download | postgresql-e29203a60b1c7e0d667e3a912d04c4a715bda6e9.tar.gz postgresql-e29203a60b1c7e0d667e3a912d04c4a715bda6e9.zip |
Fix a missing article in the documentation
Per complaint from Grant Gryczan.
It's a very old typo; backpatch all the way back.
Author: Laurenz Albe <laurenz.albe@cybertec.at>
Discussion: https://postgr.es/m/172179789219.915368.16590585529628354757@wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/parallel.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/parallel.sgml b/doc/src/sgml/parallel.sgml index 340d47af087..f426473209e 100644 --- a/doc/src/sgml/parallel.sgml +++ b/doc/src/sgml/parallel.sgml @@ -187,7 +187,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%'; </itemizedlist> <para> - Even when parallel query plan is generated for a particular query, there + Even when a parallel query plan is generated for a particular query, there are several circumstances under which it will be impossible to execute that plan in parallel at execution time. If this occurs, the leader will execute the portion of the plan below the <literal>Gather</literal> |