Re: Explain plan for 2 column index

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: Explain plan for 2 column index
Дата
Msg-id 200401292137.16750.dev@archonet.com
обсуждение исходный текст
Ответ на Explain plan for 2 column index  (<lnd@hnit.is>)
Ответы Re: Explain plan for 2 column index  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-performance
On Thursday 29 January 2004 19:29, lnd@hnit.is wrote:
> I have 2 columns index.
> The question is if optimizer can use both columns of an index or not,

Should do.

> i.e. the plan should read like this:
>
>     Index Cond:
>     ((name)::text = 'name1'::text)
>     AND ((date_from)::timestamp with time zone=
> ('now'::text)::timestamp(6) with time zone)
>
> Whilst I am getting index scan on first column and filter on the other:
>
>  Index Scan using testtab_name_date_from on testtab  (cost=0.00..2.01
> rows=1 width=18)
>    Index Cond: ((name)::text = 'name1'::text)
>    Filter: ((date_from)::timestamp with time zone =
> ('now'::text)::timestamp(6)with time zone)
>
> Could the problem be timestamp column or timestamp with time zones?

What types are the columns here? If date_from isn't timestamp with time zone,
that might be the issue. Also, I'm not convinced timestamp is the same thing
as timestamp(6) - why the different accuracies.

Also, note that 'now' is deprecated - now() or CURRENT_TIMESTAMP/DATE/etc are
preferred.
--
  Richard Huxton
  Archonet Ltd

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

Предыдущее
От: Jack Coates
Дата:
Сообщение: Re: query optimization question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: query optimization question