diff options
author | Amit Kapila <akapila@postgresql.org> | 2020-01-03 11:27:50 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2020-01-03 11:27:50 +0530 |
commit | 91595d181707e1ebfb37f7334ad89f24f677c8a7 (patch) | |
tree | 57555e4271ba3b0a3930f87a7c0054977b9b502a /doc/src | |
parent | f5cdf4629f7862ae081cb0357a014a3af2643bf1 (diff) |
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
Diffstat (limited to 'doc/src')
-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 9e9248de43a..d6281300265 100644 --- a/doc/src/sgml/parallel.sgml +++ b/doc/src/sgml/parallel.sgml @@ -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. |