Re: When exactly is a TIMESTAMPTZ converted to the sessions time zone? - Mailing list pgsql-general

From Tom Lane
Subject Re: When exactly is a TIMESTAMPTZ converted to the sessions time zone?
Date
Msg-id 65821.1530651617@sss.pgh.pa.us
Whole thread Raw
In response to When exactly is a TIMESTAMPTZ converted to the sessions time zone?  (Thomas Kellerer <spam_eater@gmx.net>)
Responses Re: When exactly is a TIMESTAMPTZ converted to the sessions timezone?
List pgsql-general
Thomas Kellerer <spam_eater@gmx.net> writes:
> A recent discussion around timestamptz behaviour has lead me to question my own understanding on how a TIMESTAMPTZ is
convertedto the session's time zone. 
> I assumed this conversion happens *on the server* before the value is sent to the client.

It's done in the datatype's output conversion function.

> A co-worker of mine claims that this is purely a client side thing, and that the server will always send the "plain"
UTCvalue that is stored in a timestamptz column. 

Your co-worker is certainly wrong so far as text output is concerned.
If you retrieve data in binary format, though, it looks like you get
the raw (un-rotated) timestamp value, so that any conversion would have
to be done on the client side.

            regards, tom lane


pgsql-general by date:

Previous
From: Thomas Kellerer
Date:
Subject: When exactly is a TIMESTAMPTZ converted to the sessions time zone?
Next
From: Tim Cross
Date:
Subject: Re: FK v.s unique indexes