Re: Optimizing timestamp queries? Inefficient Overlaps?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Optimizing timestamp queries? Inefficient Overlaps?
Дата
Msg-id 22736.1166423483@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Optimizing timestamp queries? Inefficient Overlaps?  ("Adam Rich" <adam.r@sbcglobal.net>)
Список pgsql-performance
"Adam Rich" <adam.r@sbcglobal.net> writes:
> I have a table similar to this:

> CREATE TABLE event_resources (
>     event_resource_id serial NOT NULL,
>     event_id integer NOT NULL,
>     resource_id integer NOT NULL,
>     start_date timestamptz NOT NULL,
>     end_date timestamptz NOT NULL,
>     CONSTRAINT event_resources_pkey PRIMARY KEY (event_resource_id)
> );
> CREATE INDEX er_idx1 ON event_resources (start_date);
> CREATE INDEX er_idx2 ON event_resources (end_date);

> select *
> from event_resources er
> where er.start_date::date = $1::date  or er.end_date::date = $1::date

> This is very slow.  Pg chooses a sequential scan.   (I am running vacuum
> and analyze)  Shouldn't Pg be able to use an index here?

No, unless you were to create the indexes on start_date::date and
end_date::date ...

> I've tried creating function indexes using cast, but Pg returns this
> error message:
> ERROR: functions in index expression must be marked IMMUTABLE

... which you can't do because the cast from timestamptz to date is
dependent on the current timezone setting.

If the start and end are really intended to be accurate only to the
day, as the column names seem to suggest, why didn't you declare them
as date to start with?

> select *
> from event_resources er
> where (er.start_date >= $1::date and er.start_date < ($1::date+1))
> or (er.end_date >= $1::date and er.end_date < ($1::date+1))

> I know it's not exactly the same as the overlaps method, but since this
> works I would expect OVERLAPS to work as well.

Sorry, but no -- read the SQL spec for OVERLAPS sometime.  It's not even
close to being the same, and with all the weird special cases for nulls,
it's just about unoptimizable :-(

            regards, tom lane

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

Предыдущее
От: "Adam Rich"
Дата:
Сообщение: Optimizing timestamp queries? Inefficient Overlaps?
Следующее
От: "Sabin Coanda"
Дата:
Сообщение: transaction ID wrap limit