diff options
| author | Thomas G. Lockhart <lockhart@fourpalms.org> | 2002-04-21 19:52:18 +0000 |
|---|---|---|
| committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 2002-04-21 19:52:18 +0000 |
| commit | 547df0cc853c3fe70dbf33e241cbe46f5e441b3e (patch) | |
| tree | 1cc84e876fb28cae976d53ad64e6fab4a5c22e66 /src/include/catalog/pg_control.h | |
| parent | 3fab49325de7924b051ea25ee8d1436d3aff6b28 (diff) | |
| download | postgresql-547df0cc853c3fe70dbf33e241cbe46f5e441b3e.tar.gz | |
Support alternate storage scheme of 64-bit integer for date/time types.
Use "--enable-integer-datetimes" in configuration to use this rather
than the original float8 storage. I would recommend the integer-based
storage for any platform on which it is available. We perhaps should
make this the default for the production release.
Change timezone(timestamptz) results to return timestamp rather than
a character string. Formerly, we didn't have a way to represent
timestamps with an explicit time zone other than freezing the info into
a string. Now, we can reasonably omit the explicit time zone from the
result and return a timestamp with values appropriate for the specified
time zone. Much cleaner, and if you need the time zone in the result
you can put it into a character string pretty easily anyway.
Allow fractional seconds in date/time types even for dates prior to 1BC.
Limit timestamp data types to 6 decimal places of precision. Just right
for a micro-second storage of int8 date/time types, and reduces the
number of places ad-hoc rounding was occuring for the float8-based types.
Use lookup tables for precision/rounding calculations for timestamp and
interval types. Formerly used pow() to calculate the desired value but
with a more limited range there is no reason to not type in a lookup
table. Should be *much* better performance, though formerly there were
some optimizations to help minimize the number of times pow() was called.
Define a HAVE_INT64_TIMESTAMP variable. Based on the configure option
"--enable-integer-datetimes" and the existing internal INT64_IS_BUSTED.
Add explicit date/interval operators and functions for addition and
subtraction. Formerly relied on implicit type promotion from date to
timestamp with time zone.
Change timezone conversion functions for the timetz type from "timetz()"
to "timezone()". This is consistant with other time zone coersion
functions for other types.
Bump the catalog version to 200204201.
Fix up regression tests to reflect changes in fractional seconds
representation for date/times in BC eras.
All regression tests pass on my Linux box.
Diffstat (limited to 'src/include/catalog/pg_control.h')
| -rw-r--r-- | src/include/catalog/pg_control.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index 2bc01d6b17..27ed668f7b 100644 --- a/src/include/catalog/pg_control.h +++ b/src/include/catalog/pg_control.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_control.h,v 1.6 2001/11/05 17:46:32 momjian Exp $ + * $Id: pg_control.h,v 1.7 2002/04/21 19:48:23 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ /* Version identifier for this pg_control format */ -#define PG_CONTROL_VERSION 71 +#define PG_CONTROL_VERSION 72 /* * Body of CheckPoint XLOG records. This is declared here because we keep @@ -106,7 +106,15 @@ typedef struct ControlFileData */ uint32 blcksz; /* block size for this DB */ uint32 relseg_size; /* blocks per segment of large relation */ + + uint32 nameDataLen; /* catalog name field width */ + uint32 funcMaxArgs; /* maximum number of function arguments */ + + /* flag indicating internal format of timestamp, interval, time */ + uint32 enableIntTimes; /* int64 storage enabled? */ + /* active locales --- "C" if compiled without USE_LOCALE: */ + uint32 localeBuflen; char lc_collate[LOCALE_NAME_BUFLEN]; char lc_ctype[LOCALE_NAME_BUFLEN]; } ControlFileData; |
