Re: RFC 9557 / IXDTF

From: David Rowley <dgrowleyml(at)gmail(dot)com>
To: pgmis(at)posteo(dot)net
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: RFC 9557 / IXDTF
Date: 2025-11-16 21:18:41
Message-ID: CAApHDvpPQJ17WfruV4V5S7-7wxA+dS-Ez92nKy+R5V=BNBs6xA@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Mon, 17 Nov 2025 at 08:44, <pgmis(at)posteo(dot)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

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2025-11-16 21:56:58 Re: RFC 9557 / IXDTF
Previous Message Adrian Klaver 2025-11-16 21:12:23 Re: RFC 9557 / IXDTF