Re: Re: to_timestamp returns the incorrect result for the DST fall over time. - Mailing list pgsql-bugs

From Robert Haas
Subject Re: Re: to_timestamp returns the incorrect result for the DST fall over time.
Date
Msg-id AANLkTi=1ZF+XjUcfZizLDE8MNFtf+u5GfL1nf0=gMGeP@mail.gmail.com
Whole thread Raw
In response to Re: to_timestamp returns the incorrect result for the DST fall over time.  (Gouse <gkhaji@gmail.com>)
Responses Re: to_timestamp returns the incorrect result for the DST fall over time.  (Gouse <gkhaji@gmail.com>)
List pgsql-bugs
On Wed, Jan 5, 2011 at 6:10 AM, Gouse <gkhaji@gmail.com> wrote:
> // snippet of the stored procedure...
> CREATE OR REPLACE FUNCTION wf_to_timestamp("varchar")
> =A0RETURNS timestamptz AS
> $BODY$
> =A0select to_timestamp($1,'YYYY-MM-DD HH24:MI:SS.MS')+ interval '1 hour' *
> (extract(timezone from to_timestamp($1,'YYYY-MM-DD HH24:MI:SS.MS')) /
> 3600.0)
> $BODY$
> =A0LANGUAGE 'sql' VOLATILE;
> ALTER FUNCTION wf_to_timestamp("varchar") OWNER TO postgres;
>
> When I pass the UTC time '2010-03-28 01:00:03 243' =A0I should expect the
> output to be '2010-03-28 02:00:03.243 + 01' =A0, instead I am getting the
> result '2010-03-28 03:00:03.243 + 01'.
>
> The store procedure works well for the UTC time starting from '2010-03-28
> 02:00:00 000'. The problem only lies for the UTC time period =A0from
> '2010-03-28 01:00:00 000' to '2010-03-28 01:59:59 999'.

How about something like this:

create or replace function x(text) returns timestamptz as $$select
to_timestamp($1,'YYYY-MM-DD HH24:MI:SS.MS')$$ set timezone =3D 'UTC'
language sql;

--=20
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

pgsql-bugs by date:

Previous
From: Gouse
Date:
Subject: Re: to_timestamp returns the incorrect result for the DST fall over time.
Next
From: Dave Page
Date:
Subject: Re: BUG #5807: psql fails to launch with "Cannot read termcap database; using dumb terminal settings. Aborted"