diferent timezones in the same table? - Mailing list pgsql-bugs

From Jaime Casanova
Subject diferent timezones in the same table?
Date
Msg-id 3073cc9b0909250719m1ab02b52i10b91f163d566eb7@mail.gmail.com
Whole thread Raw
Responses Re: diferent timezones in the same table?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
Hi,

One of the tables in a client production system has several timestamp
with time zone fields, in one of those fields they store '1900-01-01
00:00:00'::timestamp with time zone where there is no valid value (a
legacy from another dbms)...

pg =3D 8.4.1
timezone 'America/Guayaquil'

yesterday we found that that field is getting obtained as year 1899
when investigating i find that is beign obtained as timezone GMT+5:14
as shown in this extract of data (look at the data in the other field,
is just fine but shows different info about time zone):
"""
   fecha_registro     | fecha_registro_retencion
------------------------+---------------------------
 2009-07-09 00:00:00-05 | 1899-12-31 23:46:00-05:14
 2009-07-07 00:00:00-05 | 1899-12-31 23:46:00-05:14
 2009-07-27 00:00:00-05 | 1899-12-31 23:46:00-05:14
"""

i have the data in my test env and i found that this happen when
timezone is set to 'America/Guayaquil' but not if set it to 'GMT+5'
and only with values in '1900-01-01 00:00:00', even more in the same
field all values different from that date are right:

"""
imrelevsa=3D# show timezone;
 TimeZone
----------
 GMT+5
(1 row)

imrelevsa=3D# select '1900-01-01 00:00:00'::timestamp with time zone;
      timestamptz
------------------------
 1900-01-01 00:00:00-05
(1 row)

imrelevsa=3D# set timezone to 'America/Guayaquil';
SET
imrelevsa=3D# select '1900-01-01 00:00:00'::timestamp with time zone;
        timestamptz
---------------------------
 1900-01-01 00:00:00-05:14
(1 row)
"""

is this intended? why we treat '1900-01-01 00:00:00' different?

--=20
Atentamente,
Jaime Casanova
Soporte y capacitaci=C3=B3n de PostgreSQL
Asesor=C3=ADa y desarrollo de sistemas
Guayaquil - Ecuador
Cel. +59387171157

pgsql-bugs by date:

Previous
From: Annita Veneti
Date:
Subject: Re: BUG #5063: MS Access crashes by quiting after linking tables with PostgreSQL
Next
From: Tom Lane
Date:
Subject: Re: diferent timezones in the same table?