Re: LIMIT causes SEQSCAN in subselect - Mailing list pgsql-performance

From Pierre-Frédéric Caillaud
Subject Re: LIMIT causes SEQSCAN in subselect
Date
Msg-id opsjholqqlcq72hf@musicbox
Whole thread Raw
In response to Re: LIMIT causes SEQSCAN in subselect  (Josh Berkus <josh@agliodbs.com>)
List pgsql-performance
> The fact that the estimator knows that the LIMIT is pointless because
> there
> are less rows in the subselect than the LIMIT will return is not
> something we
> want to count on; sometimes the estimator has innaccurate information.
> The
> UNIQUE index makes this more certain, except that I'm not sure that the
> planner distinguishes between actual UNIQUE indexes and columns which are
> estimated unique (per the pg_stats).   And I think you can see in your
> case
> that there's quite a difference between a column we're CERTAIN is unique,
> versus a column we THINK is unique.

    I think a UNIQUE constraint can permit several 'different' NULL values...
better say "UNIQUE NOT NULL" ?


pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: Memory leak tsearch2 VACUUM FULL VERBOSE ANALYZE
Next
From: Pierre-Frédéric Caillaud
Date:
Subject: Re: Using LIMIT changes index used by planner