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 c16f6404710..10f18b0ebd0 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -1353,6 +1353,7 @@ typedef struct SubqueryScanState
* tupdesc expected return tuple description
* tuplestorestate private state of tuplestore.c
* funcexpr state for function expression being evaluated
+ * argcontext memory context to evaluate function arguments in
* ----------------
*/
typedef struct FunctionScanState
@@ -1362,6 +1363,7 @@ typedef struct FunctionScanState
TupleDesc tupdesc;
Tuplestorestate *tuplestorestate;
ExprState *funcexpr;
+ MemoryContext argcontext;
} FunctionScanState;
/* ----------------