diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-03-02 13:49:39 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-03-02 13:49:39 +0100 |
commit | 7ab1bc2939f32aa995bdb81eaac3bb28f908e980 (patch) | |
tree | 79df7e4ce1b2ea07fa4da8576fe2faa455862dcd /src/include/miscadmin.h | |
parent | 4ac30ba4f29d4b586b131404b0d514f16501272a (diff) | |
download | postgresql-7ab1bc2939f32aa995bdb81eaac3bb28f908e980.tar.gz postgresql-7ab1bc2939f32aa995bdb81eaac3bb28f908e980.zip |
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
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index c309e0233d6..06a86f9ac1f 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -291,7 +291,7 @@ extern void PreventCommandIfReadOnly(const char *cmdname); extern void PreventCommandIfParallelMode(const char *cmdname); extern void PreventCommandDuringRecovery(const char *cmdname); -/* in utils/misc/guc.c */ +/* in utils/misc/guc_tables.c */ extern PGDLLIMPORT int trace_recovery_messages; extern int trace_recovery(int trace_level); |