Re: PG planning randomly ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: PG planning randomly ?
Дата
Msg-id 8617.1204063036@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: PG planning randomly ?  ("Laurent Raufaste" <analogue@glop.org>)
Ответы Re: PG planning randomly ?  ("Laurent Raufaste" <analogue@glop.org>)
Список pgsql-performance
"Laurent Raufaste" <analogue@glop.org> writes:
> 2008/2/26, Tom Lane <tgl@sss.pgh.pa.us>:
>> ... I'm wondering if you have a definition of operator <@
>> that doesn't specify the new selectivity estimator.  Please try a
>> pg_dump -s and see what it shows as the definition of <@.

> Here's the first definition of the <@ operator in my dump:

> CREATE OPERATOR <@ (
>     PROCEDURE = ltree_risparent,
>     LEFTARG = ltree,
>     RIGHTARG = ltree,
>     COMMUTATOR = @>,
>     RESTRICT = ltreeparentsel,
>     JOIN = contjoinsel
> );

That's the right RESTRICT function, but what exactly did you mean by
"first definition"?  Are there more?

It may be that it's just not possible for the estimator to come up with
accurate rowcount estimates given the amount of info it has available.
The query you are complaining about confuses the issue quite a lot by
involving other issues.  Would you try just "explain analyze select 1
from _commment where path <@ '....';" for various typical path values,
and see if it's coming up with estimated rowcounts that are in the right
ballpark compared to the actual ones?

            regards, tom lane

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

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: disabling an index without deleting it?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: PG planning randomly ?