pgsql: Restore preprocess_groupclause()

Поиск
Список
Период
Сортировка
От Alexander Korotkov
Тема pgsql: Restore preprocess_groupclause()
Дата
Msg-id E1sFAcu-000Fmy-M0@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Restore preprocess_groupclause()

0452b461bc made optimizer explore alternative orderings of group-by pathkeys.
It eliminated preprocess_groupclause(), which was intended to match items
between GROUP BY and ORDER BY.  Instead, get_useful_group_keys_orderings()
function generates orderings of GROUP BY elements at the time of grouping
paths generation.  The get_useful_group_keys_orderings() function takes into
account 3 orderings of GROUP BY pathkeys and clauses: original order as written
in GROUP BY, matching ORDER BY clauses as much as possible, and matching the
input path as much as possible.  Given that even before 0452b461b,
preprocess_groupclause() could change the original order of GROUP BY clauses
we don't need to consider it apart from ordering matching ORDER BY clauses.

This commit restores preprocess_groupclause() to provide an ordering of
GROUP BY elements matching ORDER BY before generation of paths.  The new
version of preprocess_groupclause() takes into account an incremental sort.
The get_useful_group_keys_orderings() function now takes into 2 orderings of
GROUP BY elements: the order generated preprocess_groupclause() and the order
matching the input path as much as possible.

Discussion: https://postgr.es/m/CAPpHfdvyWLMGwvxaf%3D7KAp-z-4mxbSH8ti2f6mNOQv5metZFzg%40mail.gmail.com
Author: Alexander Korotkov
Reviewed-by: Andrei Lepikhov, Pavel Borisov

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/505c008ca37c4f6f2fffcde370b5d8354c4d4dc3

Modified Files
--------------
src/backend/optimizer/path/pathkeys.c             |  55 +----------
src/backend/optimizer/plan/planner.c              | 108 +++++++++++++++++++---
src/include/nodes/pathnodes.h                     |   6 +-
src/test/regress/expected/partition_aggregate.out |   6 +-
4 files changed, 108 insertions(+), 67 deletions(-)


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: doc PG 17 relnotes: adjust integer bin/oct funcs and psql tab
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Make RelationFlushRelation() work without ResourceOwner during a