diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-09-02 18:36:57 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-09-02 18:36:57 +0200 |
commit | 94eec79633f284488de69e253857e44aad10c730 (patch) | |
tree | 6d052f7cd1dfbc619879ced878f14d068115b37b /doc/src | |
parent | 2befd22790ef32bbe3cbfc8b4b826e8a1286afbd (diff) | |
download | postgresql-94eec79633f284488de69e253857e44aad10c730.tar.gz postgresql-94eec79633f284488de69e253857e44aad10c730.zip |
doc: Consistently use result set in documentation
We use "result set" in all other places so let's be consistent
across the entire documentation.
Reported-by: grantgryczan@gmail.com
Discussion: https://postgr.es/m/172187924855.915373.15595156724215203822@wrigleys.postgresql.org
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 590cb385ddf..4b3df7c2f8d 100644 --- a/doc/src/sgml/parallel.sgml +++ b/doc/src/sgml/parallel.sgml @@ -423,7 +423,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%'; Append</literal> node can have both partial and non-partial child plans. Non-partial children will be scanned by only a single process, since scanning them more than once would produce duplicate results. Plans that - involve appending multiple results sets can therefore achieve + involve appending multiple result sets can therefore achieve coarse-grained parallelism even when efficient partial plans are not available. For example, consider a query against a partitioned table that can only be implemented efficiently by using an index that does |