Обсуждение: Strange behavior with timestamps

Поиск
Список
Период
Сортировка

Strange behavior with timestamps

От
Marc Wrubleski
Дата:
Hi all,

I am witnessing something strange with my timestamps here and I am
desperately hoping someone can explain or assist.

If I set a time using unix timestamp, it is recalled as a different time
a week different!

The following example is for illustration purposes:

pulver=# select version();
                           version
-------------------------------------------------------------
 PostgreSQL 7.0.3 on i686-pc-linux-gnu, compiled by gcc 2.96

pulver=# update connections set starttime = timestamp 'epoch' + reltime
'984685319';
UPDATE 1
pulver=# select date_part('epoch', starttime) from connections;
 date_part
-----------
 985290119
(1 row)




Re: Strange behavior with timestamps

От
Tom Lane
Дата:
Marc Wrubleski <mlwruble@sorexsoftware.com> writes:
> pulver=# update connections set starttime = timestamp 'epoch' + reltime
> '984685319';

That calculation does not do what you seem to think it does.  (Hint:
reltime is not simply a number of seconds.)

Try just timestamp(984685319) instead.

            regards, tom lane