Doc: fix grammatical errors for enable_partitionwise_aggregate
authorDavid Rowley
Thu, 12 Oct 2023 08:15:58 +0000 (21:15 +1300)
committerDavid Rowley
Thu, 12 Oct 2023 08:15:58 +0000 (21:15 +1300)
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

doc/src/sgml/config.sgml

index 126c147fc62589d46088745ce49e3ee1a76eadc7..eaf4dc9bd42a338a1fa06dccf943e0668d0957c4 100644 (file)
@@ -5390,13 +5390,14 @@ ANY num_sync ( 
       
        
         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 GROUP
-        BY 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 off.
+        or aggregation, which allows grouping or aggregation on partitioned
+        tables to be performed separately for each partition.  If the
+        GROUP BY 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
+        off.