aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2020-10-25 22:39:00 +1300
committerDavid Rowley <drowley@postgresql.org>2020-10-25 22:41:29 +1300
commit2a15eeeddff982b7b9732d18985276d91ff210a7 (patch)
tree8dff41af49aceefa05d3d11921072ee25f44ce77 /src
parentbdc79ddd10790fcbaecc92e9ac3a64caa44d71e1 (diff)
downloadpostgresql-2a15eeeddff982b7b9732d18985276d91ff210a7.tar.gz
postgresql-2a15eeeddff982b7b9732d18985276d91ff210a7.zip
Fix incorrect parameter name in a function header comment
Author: Zhijie Hou Discussion: https://postgr.es/m/14cd74ea00204cc8a7ea5d738ac82cd1@G08CNEXMBPEKD05.g08.fujitsu.local Backpatch-through: 12, where the mistake was introduced
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/cache/lsyscache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c
index 4e9e0aad787..e24256979db 100644
--- a/src/backend/utils/cache/lsyscache.c
+++ b/src/backend/utils/cache/lsyscache.c
@@ -824,7 +824,7 @@ get_attnum(Oid relid, const char *attname)
/*
* get_attgenerated
*
- * Given the relation id and the attribute name,
+ * Given the relation id and the attribute number,
* return the "attgenerated" field from the attribute relation.
*
* Errors if not found.