diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-02-22 05:57:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-02-22 05:57:45 +0000 |
commit | 80d6a277c921454d028e088762bb4a4723f9840e (patch) | |
tree | a00260ff44b3c75aa44afce2b7a9be850a139224 /src/backend/utils/init/globals.c | |
parent | 799bc58dc7ed9899facfc8302040749cb0a9af2f (diff) | |
download | postgresql-80d6a277c921454d028e088762bb4a4723f9840e.tar.gz postgresql-80d6a277c921454d028e088762bb4a4723f9840e.zip |
Simplify timezone-handling code per proposal to pghackers: get rid of
setting timezone-related variables during transaction start. They were
not used anyway in platforms that HAVE_TM_ZONE or HAVE_INT_TIMEZONE,
which it appears is *all* the platforms we are currently supporting.
For platforms that have neither, we now only support UTC or numeric-
offset-from-UTC timezones.
Diffstat (limited to 'src/backend/utils/init/globals.c')
-rw-r--r-- | src/backend/utils/init/globals.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c index 87a19d016d8..8a707165ec5 100644 --- a/src/backend/utils/init/globals.c +++ b/src/backend/utils/init/globals.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.68 2002/10/03 17:07:53 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.69 2003/02/22 05:57:45 tgl Exp $ * * NOTES * Globals used all over the place should be declared here and not @@ -62,9 +62,7 @@ bool IsUnderPostmaster = false; int DateStyle = USE_ISO_DATES; bool EuroDates = false; bool HasCTZSet = false; -bool CDayLight = false; int CTimeZone = 0; -char CTZName[MAXTZLEN + 1] = ""; bool enableFsync = true; bool allowSystemTableMods = false; |