1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Fix outdated references to guc.c

Commit 0a20ff54f split out the GUC variables from guc.c into a new file
guc_tables.c. This updates comments referencing guc.c regarding variables
which are now in guc_tables.c.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/6B50C70C-8C1F-4F9A-A7C0-EEAFCC032406@yesql.se
This commit is contained in:
Daniel Gustafsson
2023-03-02 13:49:39 +01:00
parent 4ac30ba4f2
commit 7ab1bc2939
7 changed files with 13 additions and 12 deletions

View File

@ -877,7 +877,7 @@ assign_session_authorization(const char *newval, void *extra)
* a translation of "none" to InvalidOid. Otherwise this is much like
* SET SESSION AUTHORIZATION.
*/
extern char *role_string; /* in guc.c */
extern char *role_string; /* in guc_tables.c */
bool
check_role(char **newval, void **extra, GucSource source)