diff options
author | Andres Freund <andres@anarazel.de> | 2018-03-20 17:32:21 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2018-03-20 17:32:21 -0700 |
commit | 4c0000b839e6d4593e63439879b0c2abea14f426 (patch) | |
tree | 3d897cdc08dc6991bea17b4a8ea9830fde806d71 /src/include/executor/execExpr.h | |
parent | 5b2526c83832e4e8a9f8db0389904ed2fb50ed37 (diff) |
Handle EEOP_FUNCEXPR_[STRICT_]FUSAGE out of line.
This isn't a very common op, and it doesn't seem worth duplicating for
JIT.
Author: Andres Freund
Diffstat (limited to 'src/include/executor/execExpr.h')
-rw-r--r-- | src/include/executor/execExpr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/executor/execExpr.h b/src/include/executor/execExpr.h index 0cab431f656..6fc4ed640b2 100644 --- a/src/include/executor/execExpr.h +++ b/src/include/executor/execExpr.h @@ -690,6 +690,10 @@ extern void CheckExprStillValid(ExprState *state, ExprContext *econtext); * execExprInterp.c, because that allows them to be used by other methods of * expression evaluation, reducing code duplication. */ +extern void ExecEvalFuncExprFusage(ExprState *state, ExprEvalStep *op, + ExprContext *econtext); +extern void ExecEvalFuncExprStrictFusage(ExprState *state, ExprEvalStep *op, + ExprContext *econtext); extern void ExecEvalParamExec(ExprState *state, ExprEvalStep *op, ExprContext *econtext); extern void ExecEvalParamExecParams(Bitmapset *params, EState *estate); |