Re: internal time format - Mailing list pgsql-hackers

From Tom Lane
Subject Re: internal time format
Date
Msg-id 15774.1050355397@sss.pgh.pa.us
Whole thread Raw
In response to internal time format  (justin <jtyme@intrusic.com>)
List pgsql-hackers
justin <jtyme@intrusic.com> writes:
> I'm generating binary copy files and was wondering if someone could quickly 
> shed some light on the internal binary format used to represent time types, 
> specifically timestamp{w/tz} types.

It's usually a float8, but an int8 if you built with
--enable-integer-datetimes.  IIRC, the float8 represents seconds
before/since midnight 1/1/2000, the int8 the same but multiplied by
10^6.  For timestamptz the reference is midnight GMT, for timestamp
it's, uh, just midnight ...

> pointers to which source files and/or routines to look at would 
> be sufficient.  

The date and time related files in src/backend/utils/adt/ are what
to look at.
        regards, tom lane



pgsql-hackers by date:

Previous
From: cbbrowne@cbbrowne.com
Date:
Subject: Re: Anyone working on better transaction locking?
Next
From: Bruce Momjian
Date:
Subject: Are we losing momentum?