Re: RFC 9557 / IXDTF - Mailing list pgsql-general

From David Rowley
Subject Re: RFC 9557 / IXDTF
Date
Msg-id CAApHDvpPQJ17WfruV4V5S7-7wxA+dS-Ez92nKy+R5V=BNBs6xA@mail.gmail.com
Whole thread Raw
In response to RFC 9557 / IXDTF  (pgmis@posteo.net)
List pgsql-general
On Mon, 17 Nov 2025 at 08:44, <pgmis@posteo.net> wrote:
> If not, is there some suggestion on how to best store information like
> this?

You could just store the time zone name separately, e.g:

create table ts (ts timestamptz, tz text);
insert into ts values(now(), 'America/Los_Angeles');
select ts at time zone tz from ts;
          timezone
----------------------------
 2025-11-16 13:18:14.075491

David



pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: RFC 9557 / IXDTF
Next
From: Tom Lane
Date:
Subject: Re: RFC 9557 / IXDTF