Re: Max time queries

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Chad Thompson" <chad(at)weblinkservices(dot)com>
Cc: "pgsql-performance" <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Max time queries
Date: 2002-10-18 01:37:27
Message-ID: 13380.1034905047@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

"Chad Thompson" <chad(at)weblinkservices(dot)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

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Mario Weilguni 2002-10-21 06:23:33 Self-generating statistics?
Previous Message Chad Thompson 2002-10-17 14:45:07 Max time queries