summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 1f7c6d13144..b271f213f59 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -1407,6 +1407,7 @@ typedef struct SubqueryScanState
* nfuncs number of functions being executed
* funcstates per-function execution states (private in
* nodeFunctionscan.c)
+ * argcontext memory context to evaluate function arguments in
* ----------------
*/
struct FunctionScanPerFuncState;
@@ -1421,6 +1422,7 @@ typedef struct FunctionScanState
int nfuncs;
struct FunctionScanPerFuncState *funcstates; /* array of length
* nfuncs */
+ MemoryContext argcontext;
} FunctionScanState;
/* ----------------