diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-12 02:37:39 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-12 02:37:39 +0000 |
commit | badce86a2c327b40c6146242526d1523455d64a6 (patch) | |
tree | 6e0cb658889a2688e76d9ac19a56555c5eb0e738 /src/include/executor/nodeGroup.h | |
parent | 46fb9c29e2990ba470bb741ff6dd60f2ae218e64 (diff) | |
download | postgresql-badce86a2c327b40c6146242526d1523455d64a6.tar.gz postgresql-badce86a2c327b40c6146242526d1523455d64a6.zip |
First stage of reclaiming memory in executor by resetting short-term
memory contexts. Currently, only leaks in expressions executed as
quals or projections are handled. Clean up some old dead cruft in
executor while at it --- unused fields in state nodes, that sort of thing.
Diffstat (limited to 'src/include/executor/nodeGroup.h')
-rw-r--r-- | src/include/executor/nodeGroup.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h index 303516b167e..71bd3b52ff5 100644 --- a/src/include/executor/nodeGroup.h +++ b/src/include/executor/nodeGroup.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodeGroup.h,v 1.16 2000/04/12 17:16:33 momjian Exp $ + * $Id: nodeGroup.h,v 1.17 2000/07/12 02:37:30 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,8 @@ extern bool execTuplesMatch(HeapTuple tuple1, TupleDesc tupdesc, int numCols, AttrNumber *matchColIdx, - FmgrInfo *eqfunctions); + FmgrInfo *eqfunctions, + MemoryContext evalContext); extern FmgrInfo *execTuplesMatchPrepare(TupleDesc tupdesc, int numCols, AttrNumber *matchColIdx); |