diff options
author | Daniel Gustafsson | 2023-03-02 12:49:39 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2023-03-02 12:49:39 +0000 |
commit | 7ab1bc2939f32aa995bdb81eaac3bb28f908e980 (patch) | |
tree | 79df7e4ce1b2ea07fa4da8576fe2faa455862dcd /src/timezone | |
parent | 4ac30ba4f29d4b586b131404b0d514f16501272a (diff) |
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/timezone')
-rw-r--r-- | src/timezone/pgtz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timezone/pgtz.c b/src/timezone/pgtz.c index 89b69fd2af2..c03078f7c83 100644 --- a/src/timezone/pgtz.c +++ b/src/timezone/pgtz.c @@ -364,7 +364,7 @@ pg_timezone_initialize(void) * We may not yet know where PGSHAREDIR is (in particular this is true in * an EXEC_BACKEND subprocess). So use "GMT", which pg_tzset forces to be * interpreted without reference to the filesystem. This corresponds to - * the bootstrap default for these variables in guc.c, although in + * the bootstrap default for these variables in guc_tables.c, although in * principle it could be different. */ session_timezone = pg_tzset("GMT"); |