mirror of
https://github.com/postgres/postgres.git
synced 2025-05-17 06:41:24 +03:00
Avoid leaking memory while evaluating arguments for a table function.
ExecMakeTableFunctionResult evaluated the arguments for a function-in-FROM in the query-lifespan memory context. This is insignificant in simple cases where the function relation is scanned only once; but if the function is in a sub-SELECT or is on the inside of a nested loop, any memory consumed during argument evaluation can add up quickly. (The potential for trouble here had been foreseen long ago, per existing comments; but we'd not previously seen a complaint from the field about it.) To fix, create an additional temporary context just for this purpose. Per an example from MauMau. Back-patch to all active branches.
This commit is contained in:
parent
1442b426e5
commit
c1f8fb9bfb
@ -2002,6 +2002,7 @@ ExecMakeFunctionResultNoSets(FuncExprState *fcache,
|
|||||||
Tuplestorestate *
|
Tuplestorestate *
|
||||||
ExecMakeTableFunctionResult(ExprState *funcexpr,
|
ExecMakeTableFunctionResult(ExprState *funcexpr,
|
||||||
ExprContext *econtext,
|
ExprContext *econtext,
|
||||||
|
MemoryContext argContext,
|
||||||
TupleDesc expectedDesc,
|
TupleDesc expectedDesc,
|
||||||
bool randomAccess)
|
bool randomAccess)
|
||||||
{
|
{
|
||||||
@ -2083,12 +2084,18 @@ ExecMakeTableFunctionResult(ExprState *funcexpr,
|
|||||||
/*
|
/*
|
||||||
* Evaluate the function's argument list.
|
* Evaluate the function's argument list.
|
||||||
*
|
*
|
||||||
* Note: ideally, we'd do this in the per-tuple context, but then the
|
* We can't do this in the per-tuple context: the argument values
|
||||||
* argument values would disappear when we reset the context in the
|
* would disappear when we reset that context in the inner loop. And
|
||||||
* inner loop. So do it in caller context. Perhaps we should make a
|
* the caller's CurrentMemoryContext is typically a query-lifespan
|
||||||
* separate context just to hold the evaluated arguments?
|
* context, so we don't want to leak memory there. We require the
|
||||||
|
* caller to pass a separate memory context that can be used for this,
|
||||||
|
* and can be reset each time through to avoid bloat.
|
||||||
*/
|
*/
|
||||||
|
MemoryContextReset(argContext);
|
||||||
|
oldcontext = MemoryContextSwitchTo(argContext);
|
||||||
argDone = ExecEvalFuncArgs(&fcinfo, fcache->args, econtext);
|
argDone = ExecEvalFuncArgs(&fcinfo, fcache->args, econtext);
|
||||||
|
MemoryContextSwitchTo(oldcontext);
|
||||||
|
|
||||||
/* We don't allow sets in the arguments of the table function */
|
/* We don't allow sets in the arguments of the table function */
|
||||||
if (argDone != ExprSingleResult)
|
if (argDone != ExprSingleResult)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include "executor/nodeFunctionscan.h"
|
#include "executor/nodeFunctionscan.h"
|
||||||
#include "funcapi.h"
|
#include "funcapi.h"
|
||||||
#include "nodes/nodeFuncs.h"
|
#include "nodes/nodeFuncs.h"
|
||||||
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
|
|
||||||
static TupleTableSlot *FunctionNext(FunctionScanState *node);
|
static TupleTableSlot *FunctionNext(FunctionScanState *node);
|
||||||
@ -64,6 +65,7 @@ FunctionNext(FunctionScanState *node)
|
|||||||
node->tuplestorestate = tuplestorestate =
|
node->tuplestorestate = tuplestorestate =
|
||||||
ExecMakeTableFunctionResult(node->funcexpr,
|
ExecMakeTableFunctionResult(node->funcexpr,
|
||||||
node->ss.ps.ps_ExprContext,
|
node->ss.ps.ps_ExprContext,
|
||||||
|
node->argcontext,
|
||||||
node->tupdesc,
|
node->tupdesc,
|
||||||
node->eflags & EXEC_FLAG_BACKWARD);
|
node->eflags & EXEC_FLAG_BACKWARD);
|
||||||
}
|
}
|
||||||
@ -227,6 +229,19 @@ ExecInitFunctionScan(FunctionScan *node, EState *estate, int eflags)
|
|||||||
ExecAssignResultTypeFromTL(&scanstate->ss.ps);
|
ExecAssignResultTypeFromTL(&scanstate->ss.ps);
|
||||||
ExecAssignScanProjectionInfo(&scanstate->ss);
|
ExecAssignScanProjectionInfo(&scanstate->ss);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Create a memory context that ExecMakeTableFunctionResult can use to
|
||||||
|
* evaluate function arguments in. We can't use the per-tuple context for
|
||||||
|
* this because it gets reset too often; but we don't want to leak
|
||||||
|
* evaluation results into the query-lifespan context either. We just
|
||||||
|
* need one context, because we evaluate each function separately.
|
||||||
|
*/
|
||||||
|
scanstate->argcontext = AllocSetContextCreate(CurrentMemoryContext,
|
||||||
|
"Table function arguments",
|
||||||
|
ALLOCSET_DEFAULT_MINSIZE,
|
||||||
|
ALLOCSET_DEFAULT_INITSIZE,
|
||||||
|
ALLOCSET_DEFAULT_MAXSIZE);
|
||||||
|
|
||||||
return scanstate;
|
return scanstate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,6 +229,7 @@ extern Datum GetAttributeByName(HeapTupleHeader tuple, const char *attname,
|
|||||||
bool *isNull);
|
bool *isNull);
|
||||||
extern Tuplestorestate *ExecMakeTableFunctionResult(ExprState *funcexpr,
|
extern Tuplestorestate *ExecMakeTableFunctionResult(ExprState *funcexpr,
|
||||||
ExprContext *econtext,
|
ExprContext *econtext,
|
||||||
|
MemoryContext argContext,
|
||||||
TupleDesc expectedDesc,
|
TupleDesc expectedDesc,
|
||||||
bool randomAccess);
|
bool randomAccess);
|
||||||
extern Datum ExecEvalExprSwitchContext(ExprState *expression, ExprContext *econtext,
|
extern Datum ExecEvalExprSwitchContext(ExprState *expression, ExprContext *econtext,
|
||||||
|
@ -1392,6 +1392,7 @@ typedef struct SubqueryScanState
|
|||||||
* tupdesc expected return tuple description
|
* tupdesc expected return tuple description
|
||||||
* tuplestorestate private state of tuplestore.c
|
* tuplestorestate private state of tuplestore.c
|
||||||
* funcexpr state for function expression being evaluated
|
* funcexpr state for function expression being evaluated
|
||||||
|
* argcontext memory context to evaluate function arguments in
|
||||||
* ----------------
|
* ----------------
|
||||||
*/
|
*/
|
||||||
typedef struct FunctionScanState
|
typedef struct FunctionScanState
|
||||||
@ -1401,6 +1402,7 @@ typedef struct FunctionScanState
|
|||||||
TupleDesc tupdesc;
|
TupleDesc tupdesc;
|
||||||
Tuplestorestate *tuplestorestate;
|
Tuplestorestate *tuplestorestate;
|
||||||
ExprState *funcexpr;
|
ExprState *funcexpr;
|
||||||
|
MemoryContext argcontext;
|
||||||
} FunctionScanState;
|
} FunctionScanState;
|
||||||
|
|
||||||
/* ----------------
|
/* ----------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user