pgsql: Further mucking with PlaceHolderVar-related restrictions on join

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Further mucking with PlaceHolderVar-related restrictions on join
Дата
Msg-id E1ZOuSs-0002ih-Mk@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Further mucking with PlaceHolderVar-related restrictions on join order.

Commit 85e5e222b1dd02f135a8c3bf387d0d6d88e669bd turns out not to have taken
care of all cases of the partially-evaluatable-PlaceHolderVar problem found
by Andreas Seltenreich's fuzz testing.  I had set it up to check for risky
PHVs only in the event that we were making a star-schema-based exception to
the param_source_rels join ordering heuristic.  However, it turns out that
the problem can occur even in joins that satisfy the param_source_rels
heuristic, in which case allow_star_schema_join() isn't consulted.
Refactor so that we check for risky PHVs whenever the proposed join has
any remaining parameterization.

Back-patch to 9.2, like the previous patch (except for the regression test
case, which only works back to 9.3 because it uses LATERAL).

Note that this discovery implies that problems of this sort could've
occurred in 9.2 and up even before the star-schema patch; though I've not
tried to prove that experimentally.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4200a92862604d6fcb726fbe7a3e2b38c1dc6837

Modified Files
--------------
src/backend/optimizer/path/joinpath.c |   69 ++++++++++++++++++++-------------
src/test/regress/expected/join.out    |   20 ++++++++++
src/test/regress/sql/join.sql         |   18 +++++++++
3 files changed, 79 insertions(+), 28 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Further mucking with PlaceHolderVar-related restrictions on join
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Further mucking with PlaceHolderVar-related restrictions on join