diferent timezones in the same table?

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема diferent timezones in the same table?
Дата
Msg-id 3073cc9b0909250719m1ab02b52i10b91f163d566eb7@mail.gmail.com
обсуждение исходный текст
Ответы Re: diferent timezones in the same table?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Annita Veneti
Дата:
Сообщение: Re: BUG #5063: MS Access crashes by quiting after linking tables with PostgreSQL
Следующее
От: Tom Lane
Дата:
Сообщение: Re: diferent timezones in the same table?