diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-21 04:34:36 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-21 04:34:36 +0000 |
commit | 0ea4f9c859dc48ad228e63cc29a225a29939a26d (patch) | |
tree | d97633ce8c57259822d0c3ebe42981a117982645 /src/include/miscadmin.h | |
parent | ced30eb8575d4e129f4c12a1317d3a615a1fa66a (diff) | |
download | postgresql-0ea4f9c859dc48ad228e63cc29a225a29939a26d.tar.gz postgresql-0ea4f9c859dc48ad228e63cc29a225a29939a26d.zip |
Back out:
> Attached is a patch that addressed all the discussed issues
> that did not break backward compatability, including the
> ability to output ISO-8601 compliant intervals by setting
> datestyle to iso8601basic.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index a6122b7e1b7..729c0049d93 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.139 2003/12/20 15:32:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.140 2003/12/21 04:34:35 momjian Exp $ * * NOTES * some of the information in this file should be moved to @@ -150,8 +150,6 @@ extern DLLIMPORT Oid MyDatabaseId; * USE_ISO_DATES specifies ISO-compliant format * USE_SQL_DATES specifies Oracle/Ingres-compliant format * USE_GERMAN_DATES specifies German-style dd.mm/yyyy - * USE_ISO8601BASIC_DATES specifies ISO-8601-basic format (including - * ISO compliant but non-human-friendly intervals) * * DateOrder defines the field order to be assumed when reading an * ambiguous date (anything not in YYYY-MM-DD format, with a four-digit @@ -171,7 +169,6 @@ extern DLLIMPORT Oid MyDatabaseId; #define USE_ISO_DATES 1 #define USE_SQL_DATES 2 #define USE_GERMAN_DATES 3 -#define USE_ISO8601BASIC_DATES 4 /* valid DateOrder values */ #define DATEORDER_YMD 0 |