Re: Daylight Savings Time handling on persistent connections - Mailing list pgsql-general

From Tom Lane
Subject Re: Daylight Savings Time handling on persistent connections
Date
Msg-id 28931.1099244851@sss.pgh.pa.us
Whole thread Raw
In response to Re: Daylight Savings Time handling on persistent connections  (Randall Nortman <postgreslists@wonderclown.com>)
Responses Re: Daylight Savings Time handling on persistent connections  (Randall Nortman <postgreslists@wonderclown.com>)
List pgsql-general
Randall Nortman <postgreslists@wonderclown.com> writes:
> I can't reproduce the error without messing up my clock, but from my
> logs, here's the text of the SQL sent to the server:

> insert into sensor_readings_numeric (sensor_id, reading_ts, reading,
> min, max) values (3, '2004-10-31 01:00:00', 0.540602, 0.519071837254,
> 0.551811824539)

> And this came back:
> ERROR:  duplicate key violates unique constraint "sensor_readings_numeric_pkey"

Hmm ... and you were generating that timestamp string how exactly?
I suspect that you actually sent the same timestamp string twice, one
hour apart, in which case I'd have to call this an application bug.
You really need to include the timezone specification in order to
have an unambiguous timestamp string.  It doesn't have to be UTC as you
previously suggested, but it does have to be labeled with the intended
zone.

            regards, tom lane

pgsql-general by date:

Previous
From: Vinko Vrsalovic
Date:
Subject: Re: Superuser log-in through a web interface?
Next
From: Randall Nortman
Date:
Subject: Re: Daylight Savings Time handling on persistent connections