Re: Max time queries - Mailing list pgsql-performance

From Tom Lane
Subject Re: Max time queries
Date
Msg-id 13380.1034905047@sss.pgh.pa.us
Whole thread Raw
In response to Max time queries  ("Chad Thompson" <chad@weblinkservices.com>)
List pgsql-performance
"Chad Thompson" <chad@weblinkservices.com> writes:
> Heres an oddity.  Why would it take more time to not find an answer than it
>  would to find one?

Because the successful query stops as soon as it's exhausted the LIMIT
(ie, after it's found the first matching combination of rows).  The
failing query has to run through the whole tables looking in vain for
a match.  Note the difference in number of rows scanned in the lower
levels of your query.

            regards, tom lane

pgsql-performance by date:

Previous
From: "Chad Thompson"
Date:
Subject: Max time queries
Next
From: Mario Weilguni
Date:
Subject: Self-generating statistics?