aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/aggregatecmds.c
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2024-12-23 19:41:49 +1300
committerDavid Rowley <drowley@postgresql.org>2024-12-23 19:41:49 +1300
commit7ec4b9ff80d92fee3c41eb1a069cc32d0ec11da1 (patch)
tree04bb50ab45235625c97fe785901363e17c7769aa /src/backend/commands/aggregatecmds.c
parent7f97b4734f937db6f8dab1bbf8bbaab349e6c9b1 (diff)
downloadpostgresql-7ec4b9ff80d92fee3c41eb1a069cc32d0ec11da1.tar.gz
postgresql-7ec4b9ff80d92fee3c41eb1a069cc32d0ec11da1.zip
Fix incorrect source filename references
Jian He reported the src/include/utility/tcop.h one and the remainder were found by using a script to look for src/* and check that we have a filename or directory of that name. In passing, fix some out-date comments. Reported-by: Jian He <jian.universality@gmail.com> Reviewed-by: Tom Lane Discussion: https://postgr.es/m/CACJufxGoE3H-7VgO02=PrR4SNuVWDVbfTyUnwO0HvS-Lxurnog@mail.gmail.com
Diffstat (limited to 'src/backend/commands/aggregatecmds.c')
-rw-r--r--src/backend/commands/aggregatecmds.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/commands/aggregatecmds.c b/src/backend/commands/aggregatecmds.c
index fde5a2a0e04..3f117d8e2c6 100644
--- a/src/backend/commands/aggregatecmds.c
+++ b/src/backend/commands/aggregatecmds.c
@@ -12,11 +12,11 @@
* src/backend/commands/aggregatecmds.c
*
* DESCRIPTION
- * The "DefineFoo" routines take the parse tree and pick out the
+ * The "DefineAggregate" routine takes the parse tree and picks out the
* appropriate arguments/flags, passing the results to the
- * corresponding "FooDefine" routines (in src/catalog) that do
- * the actual catalog-munging. These routines also verify permission
- * of the user to execute the command.
+ * "AggregateCreate" routine (in src/backend/catalog), which does the
+ * actual catalog-munging. DefineAggregate also verifies the permission of
+ * the user to execute the command.
*
*-------------------------------------------------------------------------
*/