pgsql: Fix bug in HashAgg's selective-column-spilling logic.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix bug in HashAgg's selective-column-spilling logic.
Дата
Msg-id E1l7sJU-0003sE-V7@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix bug in HashAgg's selective-column-spilling logic.

Commit 230230223 taught nodeAgg.c that, when spilling tuples from
memory in an oversized hash aggregation, it only needed to spill
input columns referenced in the node's tlist and quals.  Unfortunately,
that's wrong: we also have to save the grouping columns.  The error
is masked in common cases because the grouping columns also appear
in the tlist, but that's not necessarily true.  The main category
of plans where it's not true seem to come from semijoins ("WHERE
outercol IN (SELECT innercol FROM innertable)") where the innercol
needs an implicit promotion to make it comparable to the outercol.
The grouping column will be "innercol::promotedtype", but that
expression appears nowhere in the Agg node's own tlist and quals;
only the bare "innercol" is found in the tlist.

I spent quite a bit of time looking for a suitable regression test
case for this, without much success.  If the number of distinct
values of the innercol is large enough to make spilling happen,
the planner tends to prefer a non-HashAgg plan, at least for
problem sizes that are reasonable to use in the regression tests.
So, no new regression test.  However, this patch does demonstrably
fix the originally-reported test case.

Per report from s.p.e (at) gmx-topmail.de.  Backpatch to v13
where the troublesome code came in.

Discussion: https://postgr.es/m/trinity-1c565d44-159f-488b-a518-caf13883134f-1611835701633@3c-app-gmx-bap78

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/6467661b6d80122582c9b84f9ae350e5e8073de2

Modified Files
--------------
src/backend/executor/nodeAgg.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)


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

Предыдущее
От: Thomas Munro
Дата:
Сообщение: pgsql: Tab-complete CREATE DATABASE ... LOCALE.
Следующее
От: Etsuro Fujita
Дата:
Сообщение: pgsql: postgres_fdw: Fix assertion in estimate_path_cost_size().