pgsql: Fix EvalPlanQual handling of foreign/custom joins in ExecScanFet
| От | Etsuro Fujita |
|---|---|
| Тема | pgsql: Fix EvalPlanQual handling of foreign/custom joins in ExecScanFet |
| Дата | |
| Msg-id | E1v8whz-001mjZ-1x@gemulon.postgresql.org обсуждение исходный текст |
| Список | pgsql-committers |
Fix EvalPlanQual handling of foreign/custom joins in ExecScanFetch. If inside an EPQ recheck, ExecScanFetch would run the recheck method function for foreign/custom joins even if they aren't descendant nodes in the EPQ recheck plan tree, which is problematic at least in the foreign-join case, because such a foreign join isn't guaranteed to have an alternative local-join plan required for running the recheck method function; in the postgres_fdw case this could lead to a segmentation fault or an assert failure in an assert-enabled build when running the recheck method function. Even if inside an EPQ recheck, any scan nodes that aren't descendant ones in the EPQ recheck plan tree should be normally processed by using the access method function; fix by modifying ExecScanFetch so that if inside an EPQ recheck, it runs the recheck method function for foreign/custom joins that are descendant nodes in the EPQ recheck plan tree as before and runs the access method function for foreign/custom joins that aren't. This fix also adds to postgres_fdw an isolation test for an EPQ recheck that caused issues stated above. Oversight in commit 385f337c9. Reported-by: Kristian Lejao <kristianlejao@gmail.com> Author: Masahiko Sawada <sawada.mshk@gmail.com> Co-authored-by: Etsuro Fujita <etsuro.fujita@gmail.com> Reviewed-by: Michael Paquier <michael@paquier.xyz> Reviewed-by: Etsuro Fujita <etsuro.fujita@gmail.com> Discussion: https://postgr.es/m/CAD21AoBpo6Gx55FBOW+9s5X=nUw3Xpq64v35fpDEKsTERnc4TQ@mail.gmail.com Backpatch-through: 13 Branch ------ REL_17_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/2bb84ea7ef89961ab3c02c4496a44b6335fc79e9 Modified Files -------------- contrib/postgres_fdw/.gitignore | 2 + contrib/postgres_fdw/Makefile | 2 + contrib/postgres_fdw/expected/eval_plan_qual.out | 37 ++++++++++++++++ contrib/postgres_fdw/meson.build | 6 +++ contrib/postgres_fdw/specs/eval_plan_qual.spec | 55 ++++++++++++++++++++++++ src/backend/executor/execScan.c | 22 +++++++--- 6 files changed, 117 insertions(+), 7 deletions(-)
В списке pgsql-committers по дате отправления: