mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Add soft error handling to some expression nodes
This adjusts the expression evaluation code for CoerceViaIO and CoerceToDomain to handle errors softly if needed. For CoerceViaIo, this means using InputFunctionCallSafe(), which provides the option to handle errors softly, instead of calling the type input function directly. For CoerceToDomain, this simply entails replacing the ereport() in ExecEvalConstraintCheck() by errsave(). In both cases, the ErrorSaveContext to be used when evaluating the expression is stored by ExecInitExprRec() in the expression's struct in the expression's ExprEvalStep. The ErrorSaveContext is passed by setting ExprState.escontext to point to it when calling ExecInitExprRec() on the expression whose errors are to be handled softly. Note that no call site of ExecInitExprRec() has been changed in this commit, so there's no functional change. This is intended for implementing new SQL/JSON expression nodes in future commits that will use to it suppress errors that may occur during type coercions. Reviewed-by: Álvaro Herrera Discussion: https://postgr.es/m/CA+HiwqE4XTdfb1nW=Ojoy_tQSRhYt-q_kb6i5d4xcKyrLC1Nbg@mail.gmail.com
This commit is contained in:
@ -139,6 +139,7 @@ ExecInitExpr(Expr *node, PlanState *parent)
|
||||
state->expr = node;
|
||||
state->parent = parent;
|
||||
state->ext_params = NULL;
|
||||
state->escontext = NULL;
|
||||
|
||||
/* Insert setup steps as needed */
|
||||
ExecCreateExprSetupSteps(state, (Node *) node);
|
||||
@ -176,6 +177,7 @@ ExecInitExprWithParams(Expr *node, ParamListInfo ext_params)
|
||||
state->expr = node;
|
||||
state->parent = NULL;
|
||||
state->ext_params = ext_params;
|
||||
state->escontext = NULL;
|
||||
|
||||
/* Insert setup steps as needed */
|
||||
ExecCreateExprSetupSteps(state, (Node *) node);
|
||||
@ -228,6 +230,7 @@ ExecInitQual(List *qual, PlanState *parent)
|
||||
state->expr = (Expr *) qual;
|
||||
state->parent = parent;
|
||||
state->ext_params = NULL;
|
||||
state->escontext = NULL;
|
||||
|
||||
/* mark expression as to be used with ExecQual() */
|
||||
state->flags = EEO_FLAG_IS_QUAL;
|
||||
@ -373,6 +376,7 @@ ExecBuildProjectionInfo(List *targetList,
|
||||
state->expr = (Expr *) targetList;
|
||||
state->parent = parent;
|
||||
state->ext_params = NULL;
|
||||
state->escontext = NULL;
|
||||
|
||||
state->resultslot = slot;
|
||||
|
||||
@ -544,6 +548,7 @@ ExecBuildUpdateProjection(List *targetList,
|
||||
state->expr = NULL; /* not used */
|
||||
state->parent = parent;
|
||||
state->ext_params = NULL;
|
||||
state->escontext = NULL;
|
||||
|
||||
state->resultslot = slot;
|
||||
|
||||
@ -1549,8 +1554,6 @@ ExecInitExprRec(Expr *node, ExprState *state,
|
||||
CoerceViaIO *iocoerce = (CoerceViaIO *) node;
|
||||
Oid iofunc;
|
||||
bool typisvarlena;
|
||||
Oid typioparam;
|
||||
FunctionCallInfo fcinfo_in;
|
||||
|
||||
/* evaluate argument into step's result area */
|
||||
ExecInitExprRec(iocoerce->arg, state, resv, resnull);
|
||||
@ -1579,25 +1582,13 @@ ExecInitExprRec(Expr *node, ExprState *state,
|
||||
|
||||
/* lookup the result type's input function */
|
||||
scratch.d.iocoerce.finfo_in = palloc0(sizeof(FmgrInfo));
|
||||
scratch.d.iocoerce.fcinfo_data_in = palloc0(SizeForFunctionCallInfo(3));
|
||||
|
||||
getTypeInputInfo(iocoerce->resulttype,
|
||||
&iofunc, &typioparam);
|
||||
&iofunc, &scratch.d.iocoerce.typioparam);
|
||||
fmgr_info(iofunc, scratch.d.iocoerce.finfo_in);
|
||||
fmgr_info_set_expr((Node *) node, scratch.d.iocoerce.finfo_in);
|
||||
InitFunctionCallInfoData(*scratch.d.iocoerce.fcinfo_data_in,
|
||||
scratch.d.iocoerce.finfo_in,
|
||||
3, InvalidOid, NULL, NULL);
|
||||
|
||||
/*
|
||||
* We can preload the second and third arguments for the input
|
||||
* function, since they're constants.
|
||||
*/
|
||||
fcinfo_in = scratch.d.iocoerce.fcinfo_data_in;
|
||||
fcinfo_in->args[1].value = ObjectIdGetDatum(typioparam);
|
||||
fcinfo_in->args[1].isnull = false;
|
||||
fcinfo_in->args[2].value = Int32GetDatum(-1);
|
||||
fcinfo_in->args[2].isnull = false;
|
||||
/* Set ErrorSaveContext if passed by the caller. */
|
||||
scratch.d.iocoerce.escontext = state->escontext;
|
||||
|
||||
ExprEvalPushStep(state, &scratch);
|
||||
break;
|
||||
@ -1628,6 +1619,7 @@ ExecInitExprRec(Expr *node, ExprState *state,
|
||||
elemstate->expr = acoerce->elemexpr;
|
||||
elemstate->parent = state->parent;
|
||||
elemstate->ext_params = state->ext_params;
|
||||
state->escontext = NULL;
|
||||
|
||||
elemstate->innermost_caseval = (Datum *) palloc(sizeof(Datum));
|
||||
elemstate->innermost_casenull = (bool *) palloc(sizeof(bool));
|
||||
@ -3306,6 +3298,8 @@ ExecInitCoerceToDomain(ExprEvalStep *scratch, CoerceToDomain *ctest,
|
||||
/* we'll allocate workspace only if needed */
|
||||
scratch->d.domaincheck.checkvalue = NULL;
|
||||
scratch->d.domaincheck.checknull = NULL;
|
||||
/* Set ErrorSaveContext if passed by the caller. */
|
||||
scratch->d.domaincheck.escontext = state->escontext;
|
||||
|
||||
/*
|
||||
* Evaluate argument - it's fine to directly store it into resv/resnull,
|
||||
|
Reference in New Issue
Block a user