summaryrefslogtreecommitdiff
path: root/src/include/miscadmin.h
diff options
context:
space:
mode:
authorMarc G. Fournier1997-03-18 16:36:50 +0000
committerMarc G. Fournier1997-03-18 16:36:50 +0000
commitb5e16b1869076ae49e9b313e366664464f8e8989 (patch)
tree1b7f21db8e87a30989ab8650609d3efcf1e26be7 /src/include/miscadmin.h
parent7d02575ad1a608533637c7ec07cf5f7db81122e9 (diff)
Resync the source tree, commit some things that were missing (pqcomprim.c) and
bring in Thomas's updates for the date/time code...
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r--src/include/miscadmin.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index 5fab595f175..81fcece3463 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -11,7 +11,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: miscadmin.h,v 1.5 1997/01/26 15:32:06 scrappy Exp $
+ * $Id: miscadmin.h,v 1.6 1997/03/18 16:36:23 scrappy Exp $
*
* NOTES
* some of the information in this file will be moved to
@@ -57,7 +57,18 @@ extern bool IsPostmaster;
extern short DebugLvl;
-extern int EuroDates;
+/* Date/Time Configuration
+ * HasCTZSet if client timezone is specified by client.
+ * EuroDates if client prefers dates interpreted and written w/European conventions.
+ * CTimeZone is the timezone offset in seconds.
+ * CTZName is the timezone label.
+ */
+
+extern bool EuroDates;
+extern bool HasCTZSet;
+extern bool CDayLight;
+extern int CTimeZone;
+extern char CTZName[];
extern Oid LastOidProcessed; /* for query rewrite */