diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-10-19 11:44:14 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2024-10-19 11:44:14 -0400 |
commit | 52475b4d30984e377542f964951bea57b0b26e92 (patch) | |
tree | 03d9535ec0077043b03ceaa01d0dc1338a613f2a /src | |
parent | 779972e534c05c51be3e593b0681029afb1bd155 (diff) | |
download | postgresql-52475b4d30984e377542f964951bea57b0b26e92.tar.gz postgresql-52475b4d30984e377542f964951bea57b0b26e92.zip |
Fix comment about pg_authid.
pg_shadow is not "publicly readable". (pg_group is, but there seems
no need to make that distinction here.) Seems to be a thinko dating
clear back to 7762619e9.
Antonin Houska
Discussion: https://postgr.es/m/31926.1729252247@antos
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_authid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/pg_authid.h b/src/include/catalog/pg_authid.h index e846d757316..b0dbdf2dd2e 100644 --- a/src/include/catalog/pg_authid.h +++ b/src/include/catalog/pg_authid.h @@ -3,7 +3,7 @@ * pg_authid.h * definition of the "authorization identifier" system catalog (pg_authid) * - * pg_shadow and pg_group are now publicly accessible views on pg_authid. + * pg_shadow and pg_group are now views on pg_authid. * * * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group |