pgsql: Fix incorrect tests for SRFs in relation_can_be_sorted_early().

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix incorrect tests for SRFs in relation_can_be_sorted_early().
Дата
Msg-id E1oJM01-000BHb-CC@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix incorrect tests for SRFs in relation_can_be_sorted_early().

Commit fac1b470a thought we could check for set-returning functions
by testing only the top-level node in an expression tree.  This is
wrong in itself, and to make matters worse it encouraged others
to make the same mistake, by exporting tlist.c's special-purpose
IS_SRF_CALL() as a widely-visible macro.  I can't find any evidence
that anyone's taken the bait, but it was only a matter of time.

Use expression_returns_set() instead, and stuff the IS_SRF_CALL()
genie back in its bottle, this time with a warning label.  I also
added a couple of cross-reference comments.

After a fair amount of fooling around, I've despaired of making
a robust test case that exposes the bug reliably, so no test case
here.  (Note that the test case added by fac1b470a is itself
broken, in that it doesn't notice if you remove the code change.
The repro given by the bug submitter currently doesn't fail either
in v15 or HEAD, though I suspect that may indicate an unrelated bug.)

Per bug #17564 from Martijn van Oosterhout.  Back-patch to v13,
as the faulty patch was.

Discussion: https://postgr.es/m/17564-c7472c2f90ef2da3@postgresql.org

Branch
------
REL_15_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/14168d57bb91e889ff03b3098f67299608289573

Modified Files
--------------
src/backend/nodes/nodeFuncs.c           |  6 ++++++
src/backend/optimizer/path/equivclass.c |  4 ++--
src/backend/optimizer/util/tlist.c      | 11 +++++++++++
src/include/optimizer/optimizer.h       |  5 -----
4 files changed, 19 insertions(+), 7 deletions(-)


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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: pgsql: Add another old commit to git-blame-ignore-revs.
Следующее
От: Masahiko Sawada
Дата:
Сообщение: Re: pgsql: Add wait_for_subscription_sync for TAP tests.