Re: Why *exactly* is date_trunc() not immutable ?

Поиск
Список
Период
Сортировка
От Michael Glaesemann
Тема Re: Why *exactly* is date_trunc() not immutable ?
Дата
Msg-id 1D73F29F-B2DC-4393-85DF-A76DB004E2F7@seespotcode.net
обсуждение исходный текст
Ответ на Why *exactly* is date_trunc() not immutable ?  (Karsten Hilbert <Karsten.Hilbert@gmx.net>)
Ответы Re: Why *exactly* is date_trunc() not immutable ?  (Karsten Hilbert <Karsten.Hilbert@gmx.net>)
Re: Why *exactly* is date_trunc() not immutable ?  (Alban Hertroys <alban@magproductions.nl>)
Список pgsql-general
On Feb 18, 2007, at 20:29 , Karsten Hilbert wrote:

> What I don't understand, however, is exactly *why* date_trunc is
> not immutable ?

I believe it's because the result of date_trunc depends on the time
zone setting for the session.

test=# select date_trunc('day', current_timestamp);
        date_trunc
------------------------
2007-02-18 00:00:00+09
(1 row)

test=# set time zone 'EST5EDT';
SET
test=# select date_trunc('day', current_timestamp);
        date_trunc
------------------------
2007-02-18 00:00:00-05
(1 row)

So, given the same arguments, ('day', and current_timestamp),
date_trunc is returning two different results. (Casting to date has
the same issue.)

Michael Glaesemann
grzm seespotcode net



В списке pgsql-general по дате отправления:

Предыдущее
От: Karsten Hilbert
Дата:
Сообщение: Re: Why *exactly* is date_trunc() not immutable ?
Следующее
От: Alexander Elgert
Дата:
Сообщение: Re: Database performance comparison paper.