pgsql: Fix LATERAL join test in test memoize.sql

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Fix LATERAL join test in test memoize.sql
Дата
Msg-id E1pK6Gc-0058u5-NI@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix LATERAL join test in test memoize.sql

The test in question was meant to be testing Memoize to ensure it worked
correctly when the inner side of the join contained lateral vars, however,
nothing in the lateral subquery stopped it from being pulled up into the
main query, so the planner did that, and that meant no more lateral vars.

Here we add a simple ORDER BY to stop the planner from being able to
pullup the lateral subquery.

Author: Richard Guo
Discussion: https://postgr.es/m/CAMbWs4_LHJaN4L-tXpKMiPFnsCJWU1P8Xh59o0W7AA6UN99=cQ@mail.gmail.com
Backpatch-through: 14, where Memoize was added.

Branch
------
REL_15_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/73f77ab508d1514ca604c47b6f56c5dee4dd9025

Modified Files
--------------
src/test/regress/expected/memoize.out | 8 +++++---
src/test/regress/sql/memoize.sql      | 6 ++++--
2 files changed, 9 insertions(+), 5 deletions(-)


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

Предыдущее
От: David Rowley
Дата:
Сообщение: pgsql: Fix LATERAL join test in test memoize.sql
Следующее
От: David Rowley
Дата:
Сообщение: pgsql: Fix LATERAL join test in test memoize.sql