diff options
author | Peter Eisentraut | 2007-03-01 14:52:04 +0000 |
---|---|---|
committer | Peter Eisentraut | 2007-03-01 14:52:04 +0000 |
commit | 7b76bfbe186f59fb4d7d7b87fd9196723a10d550 (patch) | |
tree | f802d2071d90679b7f3635797d7b1826599c9e70 /src/include/miscadmin.h | |
parent | 9f652d430fbd1e757caaec9fe64d3e94c8693158 (diff) |
Fix date/time formats for XML Schema output.
Pavel Stehule
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 29a450cab60..ca5cc799c51 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.192 2007/02/15 23:23:23 alvherre Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.193 2007/03/01 14:52:04 petere Exp $ * * NOTES * some of the information in this file should be moved to other files. @@ -178,6 +178,7 @@ extern DLLIMPORT Oid MyDatabaseTableSpace; #define USE_ISO_DATES 1 #define USE_SQL_DATES 2 #define USE_GERMAN_DATES 3 +#define USE_XSD_DATES 4 /* valid DateOrder values */ #define DATEORDER_YMD 0 |