Re: timestamp with time zone

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: timestamp with time zone
Дата
Msg-id 27573.1328816766@sss.pgh.pa.us
обсуждение исходный текст
Ответ на timestamp with time zone  (Alessandro Gagliardi <alessandro@path.com>)
Ответы Re: timestamp with time zone  (Alessandro Gagliardi <alessandro@path.com>)
Список pgsql-performance
Alessandro Gagliardi <alessandro@path.com> writes:
> WHERE ... (created at time zone timezone)::date = 'yesterday'

> created has an index (btree if it matters). timezone does not. I'm
> wondering if the solution to my problem is to create a joint index between
> created and timezone (and if so, if there is a particular way to do that to
> make it work the way I want).

The only way to make that indexable is to create an expression index on
the whole expression "(created at time zone timezone)::date".  Seems
pretty special-purpose, though it might be worthwhile if you do that a
lot.

            regards, tom lane

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

Предыдущее
От: Alessandro Gagliardi
Дата:
Сообщение: timestamp with time zone
Следующее
От: Alessandro Gagliardi
Дата:
Сообщение: Re: timestamp with time zone