aboutsummaryrefslogtreecommitdiff
path: root/src/backend/optimizer/prep/prepagg.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-02-24 16:13:17 +0900
committerMichael Paquier <michael@paquier.xyz>2021-02-24 16:13:17 +0900
commitbcf2667bf62d72faced64cb60ffbd2e599a0ebe8 (patch)
tree7f58ae5ad68ed50b11d2a5eeedced3b905a8634f /src/backend/optimizer/prep/prepagg.c
parent8ec8fe0f31712c62b761da9ef6d32214e08340d1 (diff)
downloadpostgresql-bcf2667bf62d72faced64cb60ffbd2e599a0ebe8.tar.gz
postgresql-bcf2667bf62d72faced64cb60ffbd2e599a0ebe8.zip
Fix some typos, grammar and style in docs and comments
The portions fixing the documentation are backpatched where needed. Author: Justin Pryzby Discussion: https://postgr.es/m/20210210235557.GQ20012@telsasoft.com backpatch-through: 9.6
Diffstat (limited to 'src/backend/optimizer/prep/prepagg.c')
-rw-r--r--src/backend/optimizer/prep/prepagg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/optimizer/prep/prepagg.c b/src/backend/optimizer/prep/prepagg.c
index 929a8ea13bc..89046f9afbb 100644
--- a/src/backend/optimizer/prep/prepagg.c
+++ b/src/backend/optimizer/prep/prepagg.c
@@ -71,7 +71,7 @@ static Datum GetAggInitVal(Datum textInitVal, Oid transtype);
*
* Information about the aggregates and transition functions are collected
* in the root->agginfos and root->aggtransinfos lists. The 'aggtranstype',
- * 'aggno', and 'aggtransno' fields in are filled in in each Aggref.
+ * 'aggno', and 'aggtransno' fields of each Aggref are filled in.
*
* NOTE: This modifies the Aggrefs in the input expression in-place!
*