Re: partitioned tables query not using indexes

Поиск
Список
Период
Сортировка
От A. Kretschmer
Тема Re: partitioned tables query not using indexes
Дата
Msg-id 20100224145536.GM22249@a-kretschmer.de
обсуждение исходный текст
Ответ на partitioned tables query not using indexes  (Kevin Kempter <kevink@consistentstate.com>)
Ответы Re: partitioned tables query not using indexes  (Kevin Kempter <kevink@consistentstate.com>)
Список pgsql-performance
In response to Kevin Kempter :
> Hi All;
>
> I have a table that has daily partitions.
>
> The check constraints look like this:
> CHECK (timezone('EST'::text, insert_dt) >= '2010-01-01'::date
> AND timezone('EST'::text, insert_dt) < '2010-01-02'::date)
>
> each partition has this index:
>     "fact_idx1_20100101_on_cust_id" btree (cust_id)
>
> If I run an explain hitting an individual partition I get an index scan:
>
> explain select distinct cust_id from children.fact_20100101;
>
>               QUERY PLAN
> --------------------------------------------------------------------------------------------------------------
>  Unique  (cost=0.00..136891.18 rows=70296 width=38)
>    ->  Index Scan using fact_idx1_20100101_on_cust_id on fact_20100101
> (cost=0.00..133112.0
>
>
>
>
>
> However the same query against the base table when specifying the check
> constraint key in the where clause produces sequential scans:

Have you set constraint_exclusion = on?



>
>
> explain  select distinct cust_id from fact
> where timezone('EST'::text, insert_dt) between  '2010-01-01'::date
> and '2010-01-02'::date;

Can you show the table definition? I'm not sure about the
timezone()-function and index...

Maybe you should try to rewrite your code to:

between  '2010-01-01 00:00'::timestamp and ...


Andreas
--
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG: 0x31720C99, 1006 CCB4 A326 1D42 6431  2EB0 389D 1DC2 3172 0C99

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

Предыдущее
От: "Igor Neyman"
Дата:
Сообщение: Re: Internal operations when the planner makes a hash join.
Следующее
От: Kevin Kempter
Дата:
Сообщение: Re: partitioned tables query not using indexes