Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d5b6b65

Browse files
author
Amit Kapila
committed
Fix typos in parallel query docs.
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
1 parent 0c41c83 commit d5b6b65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/parallel.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
277277
scan</emphasis>, the cooperating processes take turns reading data from the
278278
index. Currently, parallel index scans are supported only for
279279
btree indexes. Each process will claim a single index block and will
280-
scan and return all tuples referenced by that block; other process can
280+
scan and return all tuples referenced by that block; other processes can
281281
at the same time be returning tuples from a different index block.
282282
The results of a parallel btree scan are returned in sorted order
283283
within each worker process.
@@ -410,7 +410,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
410410
involve appending multiple results sets can therefore achieve
411411
coarse-grained parallelism even when efficient partial plans are not
412412
available. For example, consider a query against a partitioned table
413-
which can be only be implemented efficiently by using an index that does
413+
which can only be implemented efficiently by using an index that does
414414
not support parallel scans. The planner might choose a <literal>Parallel
415415
Append</literal> of regular <literal>Index Scan</literal> plans; each
416416
individual index scan would have to be executed to completion by a single

0 commit comments

Comments
 (0)