functions to clear date cache. Allow regression tests to pass when
timezone set.
index f5ed95be5d4648dbe88312f09cfcea12edf10773..9ec23973fbe235c02cd3c2e199a27abb1dcfaa38 100644 (file)
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.67 2001年05月17日 17:44:17 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.68 2001年06月18日 16:14:43 momjian Exp $
-->
<Chapter Id="runtime">
@@ -1201,6 +1201,17 @@ dynamic_library_path = '/usr/local/lib:/home/my_project/lib:$libdir:$libdir/cont
</listitem>
</varlistentry>
+ <term>AUSTRALIAN_TIMEZONES (<type>bool</type>)</term>
+ <listitem>
+ <para>
+ If set to true, <literal>CST</literal>, <literal>EST</literal>,
+ and <literal>SAT</literal> are interpreted as Australian
+ timezones rather than as North American Central/Eastern
+ Timezones and Saturday. The default is false.
+ </para>
+ </listitem>
+ </varlistentry>
+
<varlistentry>
<indexterm>
<primary>SSL</primary>
index 1a13aa4a4af49789589d0b1995708417a144e180..81a3d96b8aa9daa6bcb90d1262ab9264448f9daf 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.64 2001年05月03日 22:53:07 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.65 2001年06月18日 16:14:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <limits.h>
#include "miscadmin.h"
+#include "utils/guc.h"
#include "utils/datetime.h"
static int DecodeNumber(int flen, char *field,
@@ -36,7 +37,6 @@ static int DecodeTimezone(char *str, int *tzp);
static datetkn *datebsearch(char *key, datetkn *base, unsigned int nel);
static int DecodeDate(char *str, int fmask, int *tmask, struct tm * tm);
-#define USE_DATE_CACHE 1
#define ROUND_ALL 0
static int DecodePosixTimezone(char *str, int *val);
{"cdt", DTZ, NEG(30)}, /* Central Daylight Time */
{"cet", TZ, 6}, /* Central European Time */
{"cetdst", DTZ, 12}, /* Central European Dayl.Time */
-#if USE_AUSTRALIAN_RULES
- {"cst", TZ, 63}, /* Australia Eastern Std Time */
-#else
{"cst", TZ, NEG(36)}, /* Central Standard Time */
-#endif
{DCURRENT, RESERV, DTK_CURRENT}, /* "current" is always now */
{"dec", MONTH, 12},
{"december", MONTH, 12},
{"eet", TZ, 12}, /* East. Europe, USSR Zone 1 */
{"eetdst", DTZ, 18}, /* Eastern Europe */
{EPOCH, RESERV, DTK_EPOCH}, /* "epoch" reserved for system epoch time */
-#if USE_AUSTRALIAN_RULES
- {"est", TZ, 60}, /* Australia Eastern Std Time */
-#else
{"est", TZ, NEG(30)}, /* Eastern Standard Time */
-#endif
{"feb", MONTH, 2},
{"february", MONTH, 2},
{"fri", DOW, 5},
{"pst", TZ, NEG(48)}, /* Pacific Standard Time */
{"sadt", DTZ, 63}, /* S. Australian Dayl. Time */
{"sast", TZ, 57}, /* South Australian Std Time */
-#if USE_AUSTRALIAN_RULES
- {"sat", TZ, 57},
-#else
{"sat", DOW, 6},
-#endif
{"saturday", DOW, 6},
{"sep", MONTH, 9},
{"sept", MONTH, 9},
static unsigned int szdatetktbl = sizeof datetktbl / sizeof datetktbl[0];
+/* Used for SET australian_timezones to override North American ones */
+static datetkn australian_datetktbl[] = {
+ {"cst", TZ, 63}, /* Australia Eastern Std Time */
+ {"est", TZ, 60}, /* Australia Eastern Std Time */
+ {"sat", TZ, 57},
+};
+
+static unsigned int australian_szdatetktbl = sizeof australian_datetktbl /
+ sizeof australian_datetktbl[0];
+
static datetkn deltatktbl[] = {
/* text token lexval */
{"@", IGNORE, 0}, /* postgres relative time prefix */
static unsigned int szdeltatktbl = sizeof deltatktbl / sizeof deltatktbl[0];
-#if USE_DATE_CACHE
datetkn *datecache[MAXDATEFIELDS] = {NULL};
datetkn *deltacache[MAXDATEFIELDS] = {NULL};
-#endif
-
/*
* Calendar time to Julian date conversions.
int type;
datetkn *tp;
-#if USE_DATE_CACHE
if ((datecache[field] != NULL)
&& (strncmp(lowtoken, datecache[field]->token, TOKMAXLEN) == 0))
tp = datecache[field];
else
{
-#endif
- tp = datebsearch(lowtoken, datetktbl, szdatetktbl);
-#if USE_DATE_CACHE
+ tp = NULL;
+ if (Australian_timezones)
+ tp = datebsearch(lowtoken, australian_datetktbl,
+ australian_szdatetktbl);
+ if (!tp)
+ tp = datebsearch(lowtoken, datetktbl, szdatetktbl);
}
datecache[field] = tp;
-#endif
if (tp == NULL)
{
type = IGNORE;
int type;
datetkn *tp;
-#if USE_DATE_CACHE
if ((deltacache[field] != NULL)
&& (strncmp(lowtoken, deltacache[field]->token, TOKMAXLEN) == 0))
tp = deltacache[field];
else
{
-#endif
tp = datebsearch(lowtoken, deltatktbl, szdeltatktbl);
-#if USE_DATE_CACHE
}
deltacache[field] = tp;
-#endif
if (tp == NULL)
{
type = IGNORE;
@@ -2455,3 +2447,12 @@ EncodeTimeSpan(struct tm * tm, double fsec, int style, char *str)
return 0;
} /* EncodeTimeSpan() */
+
+
+void ClearDateCache(bool dummy)
+{
+ int i;
+
+ for (i=0; i < MAXDATEFIELDS; i++)
+ datecache[i] = NULL;
+}
index 28b1eb0bd679b1382e7301ea64d4857fdf39fb48..6dcaa177458aa3c4671dfc84af622d55991d3619 100644 (file)
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
*
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.38 2001年06月12日 22:54:06 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.39 2001年06月18日 16:14:43 momjian Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
#include "parser/parse_expr.h"
#include "storage/proc.h"
#include "tcop/tcopprot.h"
+#include "utils/datetime.h"
/* XXX these should be in other modules' header files */
@@ -69,6 +70,8 @@ bool Show_btree_build_stats = false;
bool SQL_inheritance = true;
+bool Australian_timezones = false;
+
#ifndef PG_KRB_SRVTAB
#define PG_KRB_SRVTAB ""
#endif
{"sql_inheritance", PGC_USERSET, &SQL_inheritance, true, NULL},
+ {"australian_timezones", PGC_USERSET, &Australian_timezones,
+ false, ClearDateCache},
+
{"fixbtree", PGC_POSTMASTER, &FixBTree, true, NULL},
{NULL, 0, NULL, false, NULL}
DEFAULT_CPU_OPERATOR_COST, 0, DBL_MAX, NULL, NULL},
{"geqo_selection_bias", PGC_USERSET, &Geqo_selection_bias,
- DEFAULT_GEQO_SELECTION_BIAS, MIN_GEQO_SELECTION_BIAS,
- MAX_GEQO_SELECTION_BIAS, NULL, NULL},
+ DEFAULT_GEQO_SELECTION_BIAS, MIN_GEQO_SELECTION_BIAS,
+ MAX_GEQO_SELECTION_BIAS, NULL, NULL},
{NULL, 0, NULL, 0.0, 0.0, 0.0, NULL, NULL}
};
"", NULL, NULL},
{"wal_sync_method", PGC_SIGHUP, &XLOG_sync_method,
- XLOG_sync_method_default,
- check_xlog_sync_method, assign_xlog_sync_method},
+ XLOG_sync_method_default, check_xlog_sync_method,
+ assign_xlog_sync_method},
{NULL, 0, NULL, NULL, NULL, NULL}
};
@@ -956,6 +962,7 @@ _ShowOption(enum config_type opttype, struct config_generic *record)
case PGC_BOOL:
val = *((struct config_bool *) record)->variable ? "on" : "off";
break;
+
case PGC_INT:
snprintf(buffer, sizeof(buffer), "%d",
*((struct config_int *) record)->variable);
index a493eed21e8136c01f7673a6df76e126af2186e0..a77666d9f44fcb3065b31f7485a55851c4735d3a 100644 (file)
#geqo_random_seed = -1 # auto-compute seed
-#
-# Inheritance
-#
-#sql_inheritance = true
-
-
-#
-# Deadlock
-#
-#deadlock_timeout = 1000
-
-
-#
-# Expression Depth Limitation
-#
-#max_expr_depth = 10000 # min 10
-
-
#
# Write-ahead log (WAL)
#
#trace_lock_oidmin = 16384
#trace_lock_table = 0
#endif
+
+
+#
+# Misc
+#
+#sql_inheritance = true
+#australian_timezones = false
+#deadlock_timeout = 1000
+#max_expr_depth = 10000 # min 10
+
index 5922d635dcece520a5a9555bebf90f1ea8ddbe5d..4f7e9c91108aa4da7f9921f3f1e8957a4d58a322 100644 (file)
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: datetime.h,v 1.18 2001年05月03日 22:53:07 tgl Exp $
+ * $Id: datetime.h,v 1.19 2001年06月18日 16:14:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/
char value; /* this may be unsigned, alas */
} datetkn;
+extern datetkn datetktbl[];
/* TMODULO()
* Macro to replace modf(), which is broken on some platforms.
@@ -264,6 +265,7 @@ extern int EncodeTimeSpan(struct tm * tm, double fsec, int style, char *str);
extern int DecodeSpecial(int field, char *lowtoken, int *val);
extern int DecodeUnits(int field, char *lowtoken, int *val);
+extern void ClearDateCache(bool);
extern int j2day(int jd);
index 08774128c140fef2e7c4c29a36c085376891c652..8909320718c52f344a9e4dc1699ae32f44f52e26 100644 (file)
* External declarations pertaining to backend/utils/misc/guc.c and
* backend/utils/misc/guc-file.l
*
- * $Id: guc.h,v 1.8 2001年06月12日 22:54:06 tgl Exp $
+ * $Id: guc.h,v 1.9 2001年06月18日 16:14:43 momjian Exp $
*/
#ifndef GUC_H
#define GUC_H
extern bool Show_btree_build_stats;
extern bool SQL_inheritance;
+extern bool Australian_timezones;
#endif /* GUC_H */
index 18ca744d7855a57b0f1623b3cbdebdce04484d37..f71b6a9821e8133804b052f956042af6ed93ba44 100644 (file)
--
-- date, time arithmetic
--
+-- needed so tests pass
+SET australian_timezones = 'off';
SELECT date '1981年02月03日' + time '04:05:06' AS "Date + Time";
Date + Time
------------------------------
index 451c6a6c7657c4494cfab0f138fc6703dc460fc7..99313d4cb4ca1a548323c67924ec5760a09566d0 100644 (file)
--
-- date, time arithmetic
--
+-- needed so tests pass
+SET australian_timezones = 'off';
SELECT date '1981年02月03日' + time '04:05:06' AS "Date + Time";
Date + Time
------------------------------
index dc16d58dea9ebc8ac95960c4e6d667acb7a40e76..9e054d2209f4b6bbc0886998ba93e732b858a9dd 100644 (file)
--
-- date, time arithmetic
--
+-- needed so tests pass
+SET australian_timezones = 'off';
SELECT date '1981年02月03日' + time '04:05:06' AS "Date + Time";
Date + Time
------------------------------
index 60d36735435311cab4e1f6df199162a81059ef91..5bfaa459c70b1120dc6f9543f9fb98426106bcb4 100644 (file)
-- Shorthand values
-- Not directly usable for regression testing since these are not constants.
-- So, just try to test parser and hope for the best - thomas 97/04/26
+-- needed so tests pass
+SET australian_timezones = 'off';
SELECT (timestamp 'today' = (timestamp 'yesterday' + interval '1 day')) as "True";
True
------
index 2350064d83935eddbfece522153eaa34c515c3e3..8d228e0e4d8bde76d74854777cbf24be2b31647e 100644 (file)
--
-- HOROLOGY
--
-
--
-- date, time arithmetic
--
+-- needed so tests pass
+SET australian_timezones = 'off';
SELECT date '1981年02月03日' + time '04:05:06' AS "Date + Time";
index 84c4fdbf6c3e92b18aedaaf5653eceeccd2ed968..49103dbe5ea52d65b7788f61292c2ae4c7d7e325 100644 (file)
--
-- DATETIME
--
-
-- Shorthand values
-- Not directly usable for regression testing since these are not constants.
-- So, just try to test parser and hope for the best - thomas 97/04/26
+-- needed so tests pass
+SET australian_timezones = 'off';
SELECT (timestamp 'today' = (timestamp 'yesterday' + interval '1 day')) as "True";
SELECT (timestamp 'today' = (timestamp 'tomorrow' - interval '1 day')) as "True";