Обсуждение: pgsql: Prevent inlining of multiply-referenced CTEs with outerrecursiv

Поиск
Список
Период
Сортировка

pgsql: Prevent inlining of multiply-referenced CTEs with outerrecursiv

От
Tom Lane
Дата:
Prevent inlining of multiply-referenced CTEs with outer recursive refs.

This has to be prevented because inlining would result in multiple
self-references, which we don't support (and in fact that's disallowed
by the SQL spec, see statements about linearly vs. nonlinearly
recursive queries).  Bug fix for commit 608b167f9.

Per report from Yaroslav Schekin (via Andrew Gierth)

Discussion: https://postgr.es/m/87wolmg60q.fsf@news-spur.riddles.org.uk

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9476131278c7bfc435ad9a21fc8e981272ac0dd2

Modified Files
--------------
src/backend/optimizer/plan/subselect.c  |  66 +++++++++++++++++++++
src/test/regress/expected/subselect.out | 100 ++++++++++++++++++++++++++++++++
src/test/regress/sql/subselect.sql      |  35 +++++++++++
3 files changed, 201 insertions(+)