Re: PG planning randomly ? - Mailing list pgsql-performance

From Tom Lane
Subject Re: PG planning randomly ?
Date
Msg-id 3637.1204043502@sss.pgh.pa.us
Whole thread Raw
In response to PG planning randomly ?  ("Laurent Raufaste" <analogue@glop.org>)
Responses Re: PG planning randomly ?  ("Laurent Raufaste" <analogue@glop.org>)
List pgsql-performance
"Laurent Raufaste" <analogue@glop.org> writes:
> I'm having some issues with this simple query:

> SELECT
>   _comment.*,
>   _article.title AS article_title,
>   _article.reference AS article_reference
> FROM
>   _comment
>   INNER JOIN _article
>     ON _article.id = _comment.parent_id
> WHERE
>   _comment.path <@ '0.1.3557034'
> ORDER BY
>   _comment.date_publishing DESC
> OFFSET 0
> LIMIT 5
> ;

> The varying information here is the ltree path "0.1.3557034"

What PG version is this?

If it's 8.2 or later then increasing the stats target for _comment.path
to 100 or more would likely help.

            regards, tom lane

pgsql-performance by date:

Previous
From: Joel Stevenson
Date:
Subject: Re: LISTEN / NOTIFY performance in 8.3
Next
From: "Kynn Jones"
Date:
Subject: Re: Q on views and performance