pgsql: Fix buggy interaction between array subscripts and subplan param
pgsql: Fix buggy interaction between array subscripts and subplan param
От:
Andres Freund <andres@anarazel.de>
Дата:
Fix buggy interaction between array subscripts and subplan params In a7f107df2 I changed subplan param evaluation to happen within the containing expression. As part of that, ExecInitSubPlanExpr() was changed to evaluate parameters via a new EEOP_PARAM_SET expression step. These parameters were temporarily stored into ExprState->resvalue/resnull, with some reasoning why that would be fine. Unfortunately, that analysis was wrong - ExecInitSubscriptionRef() evaluates the input array into "resv"/"resnull", which will often point to ExprState->resvalue/resnull. This means that the EEOP_PARAM_SET, if inside an array subscript, would overwrite the input array to array subscript. The fix is fairly simple - instead of evaluating into ExprState->resvalue/resnull, store the temporary result of the subplan in the subplan's return value. Bug: #19370 Reported-by: Zepeng Zhang Diagnosed-by: Tom Lane Diagnosed-by: Andres Freund Discussion: https://postgr.es/m/19370-7fb7a5854b7618f1@postgresql.org Backpatch-through: 18 Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/75609fded35e4d95a0e8b9875a46a496a03437cf Modified Files -------------- src/backend/executor/execExpr.c | 18 ++++++++++-------- src/backend/executor/execExprInterp.c | 6 +++--- src/test/regress/expected/subselect.out | 17 +++++++++++++++++ src/test/regress/sql/subselect.sql | 11 +++++++++++ 4 files changed, 41 insertions(+), 11 deletions(-)