aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2023-10-12 21:17:04 +1300
committerDavid Rowley <drowley@postgresql.org>2023-10-12 21:17:04 +1300
commitd6370a39da322fdfa4ad2f487b63e06cbdca07df (patch)
tree74fcf048318e73fad47b2d2fc1424323ac4bff2f
parent45c4b2a3aa72c1b4f24c51e7e219fda8f83df868 (diff)
downloadpostgresql-d6370a39da322fdfa4ad2f487b63e06cbdca07df.tar.gz
postgresql-d6370a39da322fdfa4ad2f487b63e06cbdca07df.zip
Doc: fix grammatical errors for enable_partitionwise_aggregate
Author: Andrew Atkinson Reviewed-by: Ashutosh Bapat Discussion: https://postgr.es/m/CAG6XLEnC%3DEgq0YHRic2kWWDs4xwQnQ_kBA6qhhzAq1-pO_9Tfw%40mail.gmail.com Backpatch-through: 11, where enable_partitionwise_aggregate was added
-rw-r--r--doc/src/sgml/config.sgml15
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 5fb6e13a3c3..18745906cd9 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -4941,13 +4941,14 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
<listitem>
<para>
Enables or disables the query planner's use of partitionwise grouping
- or aggregation, which allows grouping or aggregation on a partitioned
- tables performed separately for each partition. If the <literal>GROUP
- BY</literal> clause does not include the partition keys, only partial
- aggregation can be performed on a per-partition basis, and
- finalization must be performed later. Because partitionwise grouping
- or aggregation can use significantly more CPU time and memory during
- planning, the default is <literal>off</literal>.
+ or aggregation, which allows grouping or aggregation on partitioned
+ tables to be performed separately for each partition. If the
+ <literal>GROUP BY</literal> clause does not include the partition
+ keys, only partial aggregation can be performed on a per-partition
+ basis, and finalization must be performed later. Because
+ partitionwise grouping or aggregation can use significantly more CPU
+ time and memory during planning, the default is
+ <literal>off</literal>.
</para>
</listitem>
</varlistentry>