summaryrefslogtreecommitdiff
path: root/src/backend/utils/init/globals.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-01-26 15:32:28 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-01-26 15:32:28 +0000
commit632c44d8290c0e3561b1c1851d4443868034a705 (patch)
tree4879c978ed1db82a57cc82c1aa5c91bfa5307662 /src/backend/utils/init/globals.c
parentac3c926c4259690ed0c4cfab21db4c4b7ef05c11 (diff)
downloadpostgresql-632c44d8290c0e3561b1c1851d4443868034a705.tar.gz
Bring in a patch from Keith Parks to move the use of European dates
from a #define to a run-time option '-e' Man page was updated to reflect new option
Diffstat (limited to 'src/backend/utils/init/globals.c')
-rw-r--r--src/backend/utils/init/globals.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c
index ccc9378302..8ab5fa82f9 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.4 1997/01/14 08:05:36 bryanh Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.5 1997/01/26 15:31:29 scrappy Exp $
*
* NOTES
* Globals used all over the place should be declared here and not
@@ -65,6 +65,8 @@ bool IsPostmaster = false;
short DebugLvl = 0;
+int EuroDates = 0;
+
char *IndexedCatalogNames[] = {
AttributeRelationName,
ProcedureRelationName,