diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-03-28 07:18:06 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-03-28 07:18:06 +0000 |
commit | 632a707fd16389b6f17988deba224547b8bae56c (patch) | |
tree | cc06eb97118b4bfbe7b1ec16a5ca4697e762e200 /src/backend/utils/init | |
parent | 28454c216b169040411442f954b2f105a03c7f8d (diff) |
From: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Subject: [HACKERS] Small date patches (resubmitted)
Here a some small patches for the date/time code. They set the default
output format for the datetime type to the traditional Postgres
style, and fix a date debugging declaration. I submitted these
a couple of days ago, but they might have gotten lost...
NOTE: the second patch to dt.c is what I believe D'Arcy submitted as well,
that I claimed was taken out...sorry D'Arcy, my fault :(
Diffstat (limited to 'src/backend/utils/init')
-rw-r--r-- | src/backend/utils/init/globals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c index 1fa7cf7187a..ddbe67b624f 100644 --- a/src/backend/utils/init/globals.c +++ b/src/backend/utils/init/globals.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.8 1997/03/25 08:09:43 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.9 1997/03/28 07:18:06 scrappy Exp $ * * NOTES * Globals used all over the place should be declared here and not @@ -65,7 +65,7 @@ bool IsPostmaster = false; short DebugLvl = 0; -int DateStyle = USE_ISO_DATES; +int DateStyle = USE_POSTGRES_DATES; bool EuroDates = false; bool HasCTZSet = false; bool CDayLight = false; |