diff options
author | Alvaro Herrera | 2023-03-31 10:55:25 +0000 |
---|---|---|
committer | Alvaro Herrera | 2023-03-31 10:55:25 +0000 |
commit | 9b058f6b0d9c3d1ccde4d51a72bf15ce731973a1 (patch) | |
tree | d66e4a51a7bc85a804de0e9cd2a1bea5460c9dcd /src/include | |
parent | 47a97098467fda56b497049430d0949f3a7dde01 (diff) |
Move ExecEvalJsonConstructor new function to a more natural place
Commit 7081ac46ace8 put it at the end of the file, but that doesn't look
very nice.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/executor/execExpr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/execExpr.h b/src/include/executor/execExpr.h index f5a72a8b40f..53e2c9a467a 100644 --- a/src/include/executor/execExpr.h +++ b/src/include/executor/execExpr.h @@ -787,6 +787,8 @@ extern void ExecEvalHashedScalarArrayOp(ExprState *state, ExprEvalStep *op, extern void ExecEvalConstraintNotNull(ExprState *state, ExprEvalStep *op); extern void ExecEvalConstraintCheck(ExprState *state, ExprEvalStep *op); extern void ExecEvalXmlExpr(ExprState *state, ExprEvalStep *op); +extern void ExecEvalJsonConstructor(ExprState *state, ExprEvalStep *op, + ExprContext *econtext); extern void ExecEvalGroupingFunc(ExprState *state, ExprEvalStep *op); extern void ExecEvalSubPlan(ExprState *state, ExprEvalStep *op, ExprContext *econtext); @@ -794,8 +796,6 @@ extern void ExecEvalWholeRowVar(ExprState *state, ExprEvalStep *op, ExprContext *econtext); extern void ExecEvalSysVar(ExprState *state, ExprEvalStep *op, ExprContext *econtext, TupleTableSlot *slot); -extern void ExecEvalJsonConstructor(ExprState *state, ExprEvalStep *op, - ExprContext *econtext); extern void ExecAggInitGroup(AggState *aggstate, AggStatePerTrans pertrans, AggStatePerGroup pergroup, ExprContext *aggcontext); |