]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix typos in parallel query docs.
authorAmit Kapila <akapila@postgresql.org>
Fri, 3 Jan 2020 05:57:50 +0000 (11:27 +0530)
committerAmit Kapila <akapila@postgresql.org>
Fri, 3 Jan 2020 05:57:50 +0000 (11:27 +0530)
Reported-by: Jon Jensen
Author: Jon Jensen
Reviewed-by: Amit Kapila and Robert Haas
Backpatch-through: 10
Discussion: https://postgr.es/m/nycvar.YSQ.7.76.1912301807510.9899@ybpnyubfg

doc/src/sgml/parallel.sgml

index 9e9248de43a9787a0173e58e88bea3b5383a0929..d628130026585acb2d32feaa26519741553fec44 100644 (file)
@@ -310,7 +310,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
         scan</>, the cooperating processes take turns reading data from the
         index.  Currently, parallel index scans are supported only for
         btree indexes.  Each process will claim a single index block and will
-        scan and return all tuples referenced by that block; other process can
+        scan and return all tuples referenced by that block; other processes can
         at the same time be returning tuples from a different index block.
         The results of a parallel btree scan are returned in sorted order
         within each worker process.