pgsql: Add subquery pullup handling for WindowClause runCondition

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Add subquery pullup handling for WindowClause runCondition
Дата
Msg-id E1p3tKp-002n5K-32@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add subquery pullup handling for WindowClause runCondition

9d9c02ccd added code to allow WindowAgg to take some shortcuts when a
monotonic WindowFunc reached some value that it could never come back
from due to the function's monotonic nature.  That commit added a
runCondition field to WindowClause to store the condition which, when it
becomes false we can start taking shortcuts in nodeWindowAgg.c.

Here we fix an issue where subquery pullups didn't properly update the
runCondition to update the Vars to properly reference the new query level.

Here we also add a missing call to preprocess_expression() for the
WindowClause's runCondtion.  The WindowFuncs in the targetlist will have
had this process done, so we must also do it for the WindowFuncs in the
runCondition so that they can be correctly found in the targetlist
during setrefs.c

Bug: #17709
Reported-by: Alexey Makhmutov
Author: Richard Guo, David Rowley
Discussion: https://postgr.es/m/17709-4f557160e3e8ee9a@postgresql.org
Backpatch-through: 15, where 9d9c02ccd was introduced

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/94985c21020aa4a40d0dda1a26ac3e35a57e4681

Modified Files
--------------
src/backend/optimizer/plan/planner.c      | 3 +++
src/backend/optimizer/prep/prepjointree.c | 9 +++++++++
2 files changed, 12 insertions(+)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Fix macro definitions in pgstatfuncs.c
Следующее
От: David Rowley
Дата:
Сообщение: pgsql: Add subquery pullup handling for WindowClause runCondition