diff options
author | David Rowley <drowley@postgresql.org> | 2020-10-25 22:39:00 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2020-10-25 22:40:03 +1300 |
commit | e83c9f913c6197586af8ac53c1d3652db15a3c91 (patch) | |
tree | 0d464dd4fcf6d3c329a2c7c4ddc831f90d8bc583 /src | |
parent | 21d36747d4fafe16539a0c55ebb91a01e4053e3c (diff) | |
download | postgresql-e83c9f913c6197586af8ac53c1d3652db15a3c91.tar.gz postgresql-e83c9f913c6197586af8ac53c1d3652db15a3c91.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c index f3bf413829f..140339073b6 100644 --- a/src/backend/utils/cache/lsyscache.c +++ b/src/backend/utils/cache/lsyscache.c @@ -874,7 +874,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. |