postgresql/src
Thomas G. Lockhart 547df0cc85 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.
2002-04-21 19:52:18 +00:00
..
backend Support alternate storage scheme of 64-bit integer for date/time types. 2002-04-21 19:52:18 +00:00
bin Make pg_dump independent of FUNC_MAX_ARGS. 2002-04-21 05:21:18 +00:00
corba Convert files from DOS format to normal text. 2000-12-03 14:43:59 +00:00
data I've sent 3 mails to pgsql-patches. There are two files, one for doc 1999-08-16 20:27:19 +00:00
include Support alternate storage scheme of 64-bit integer for date/time types. 2002-04-21 19:52:18 +00:00
interfaces Include stdio.h and stdlib.h for completeness. 2002-04-21 19:51:44 +00:00
makefiles > > This patch corrects the use of rpath and export options when compiling 2002-04-05 12:01:59 +00:00
pl pg_type has a typnamespace column; system now supports creating types 2002-03-29 19:06:29 +00:00
template Upgrade to Autoconf version 2.53. Replaced many custom macro 2002-03-29 17:32:55 +00:00
test Support alternate storage scheme of 64-bit integer for date/time types. 2002-04-21 19:52:18 +00:00
tools Update release list. 2002-03-26 05:34:33 +00:00
tutorial Opclasses live in namespaces. I also took the opportunity to create 2002-04-17 20:57:57 +00:00
utils Fix for "--" options. Allow --xxx as a valid flag, from NetBSD fix. 2001-11-26 19:30:58 +00:00
DEVELOPERS just testing a script... 1999-07-30 03:45:57 +00:00
Makefile Move 2002-03-13 00:05:06 +00:00
Makefile.global.in Allow detection of collateindex.pl in stylesheet directory or in path, 2002-04-14 17:23:20 +00:00
Makefile.shlib Add make install-strip target. 2002-04-10 16:45:25 +00:00
nls-global.mk NLS updates, most notably fixed zh_TW translations 2001-11-29 18:59:28 +00:00
win32.mak Missed this part in pg_config.h rename. 2001-08-24 22:42:28 +00:00