Re: LIMIT causes SEQSCAN in subselect

Поиск
Список
Период
Сортировка
От Josh Berkus
Тема Re: LIMIT causes SEQSCAN in subselect
Дата
Msg-id 200412102140.18456.josh@agliodbs.com
обсуждение исходный текст
Ответ на LIMIT causes SEQSCAN in subselect  (Mike Rylander <mrylander@gmail.com>)
Ответы Re: LIMIT causes SEQSCAN in subselect  (Mike Rylander <mrylander@gmail.com>)
Re: LIMIT causes SEQSCAN in subselect  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: LIMIT causes SEQSCAN in subselect  (Pierre-Frédéric Caillaud<lists@boutiquenumerique.com>)
Список pgsql-performance
Mike,

> I'm using the fact that Postgres can elevate a subselect-join to a
> simple join when there are no aggregates involved and I think I
> remember there has been some work recently on elevating subselects
> that contain a LIMIT, so I went back and ran the plans without the
> LIMITs to see what would happen.  Well, the limit killed the subselect
> elevation.

Actually, this makes sense.   A LIMIT requires the data to be ordered first,
and then cut based on the order; it prevents collapsing the subselect into
the main query.   Some sort of materializing is necessary, even in cases like
yours where the limit is inherently meaningless because you've neglected to
use an ORDER BY.

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 realize this is a rather specialized case and not really great form.

Exactly.   You've grasped the main issue: that this has not been optimized
because it's bizarre and not very sensible query writing.   Someday we'll get
around to optimizing the really wierd queries, but there's still a lot of
work to be done on the common ones (like count(*) ...).

Keep in mind that the only reason we support LIMIT inside subqueries in the
first place is a workaround to slow aggregates, and a way to do RANK.  It's
certainly not SQL-standard.

> Just a matter of
> defining result sets independently, and creating a simple wrapper to
> join them.

Well, if you think so, you know where to submit patches ...

--
Josh Berkus
Aglio Database Solutions
San Francisco

В списке pgsql-performance по дате отправления:

Предыдущее
От: Josh Berkus
Дата:
Сообщение: Re: Partitioned table performance
Следующее
От: "Steinar H. Gunderson"
Дата:
Сообщение: Re: Slow insert