Re: storing TZ along timestamps - Mailing list pgsql-hackers

From Kevin Grittner
Subject Re: storing TZ along timestamps
Date
Msg-id 4DDFD225020000250003DE1C@gw.wicourts.gov
Whole thread Raw
In response to Re: storing TZ along timestamps  ("David E. Wheeler" <david@kineticode.com>)
Responses Re: storing TZ along timestamps  (Greg Stark <gsstark@mit.edu>)
List pgsql-hackers
"David E. Wheeler" <david@kineticode.com> wrote:
> I like it, but what do you do when a TZ has been renamed or has
> ceased to exist. Or, worse, existed last week, so last week's
> dates might still use it, but next week's must not?
I think the key thing is that the timestamp portion of it would be
identical to our current TIMESTAMP WITH TIME ZONE -- always store it
in the value UTC zone.  That way comparisons and math between
timestamps could remain sane.  The stored time zone portion would be
what it would be the display format, if usable.  In an extreme
situation like you describe above, I guess you could fall back on
what we do now for display of a timestamptz value.
Personally, I think it would be good to move a bit closer to the
standard by including a time zone in a TIMESTAMP WITH TIME ZONE
value.  The biggest problem I can see is how to try to do this in a
standard conforming fashion without breaking existing code.  It
would seem more than a little odd to support the standard semantics
with nonstandard syntax and vice versa.
-Kevin


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: How can I check the treatment of bug fixes?
Next
From: Tom Lane
Date:
Subject: Re: storing TZ along timestamps