Re: Optimizing a condition based on an a very unequally - Mailing list pgsql-admin

From Stephan Szabo
Subject Re: Optimizing a condition based on an a very unequally
Date
Msg-id 20020313131759.B86474-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Re: Optimizing a condition based on an a very unequally distributed value.  ("Nick Fankhauser" <nickf@ontko.com>)
List pgsql-admin
On Wed, 13 Mar 2002, Nick Fankhauser wrote:

> Thanks for the answer! ...but now I have more questions:
>
> Is it true that if I use this condition in a join that further constrains
> the results, this might use the index?
If there were other conditions, it may do so.

> Does PGSQL know that few or many rows will be returned because of data
> gathered from the last vacuum?

I'd guess the last analyze (or vacuum analyze).

> What do you mean by "tuple validity?" can't this query be resolved entirely
> based on the index?

Not currently, because the index doesn't know if the row can be seen by
your transaction. There may be rows that are valid for some transactions
but not yours that also have index entries.



pgsql-admin by date:

Previous
From: "Nick Fankhauser"
Date:
Subject: Re: Optimizing a condition based on an a very unequally distributed value.
Next
From: "James Kelty"
Date:
Subject: Order by clause in 'select distinct'?