summaryrefslogtreecommitdiff
path: root/src/include/executor/executor.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-10-08 18:30:52 +0000
committerBruce Momjian <bruce@momjian.us>1998-10-08 18:30:52 +0000
commit173c555948b9002b3b899d7331682e8812d171dc (patch)
tree76ee9e08cdd0d06a890d160d17d99e9f5331d4a2 /src/include/executor/executor.h
parent0a1c2805b35f59b3654d51c965d03699e60b50f7 (diff)
Make functions static or ifdef NOT_USED. Prevent pg_version creation.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r--src/include/executor/executor.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index cf218dcd7fd..3e6ae39e57c 100644
--- a/src/include/executor/executor.h
+++ b/src/include/executor/executor.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: executor.h,v 1.25 1998/09/01 04:35:49 momjian Exp $
+ * $Id: executor.h,v 1.26 1998/10/08 18:30:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -132,14 +132,12 @@ extern TupleTableSlot *ExecStoreTuple(HeapTuple tuple,
Buffer buffer,
bool shouldFree);
extern TupleTableSlot *ExecClearTuple(TupleTableSlot *slot);
-extern bool ExecSetSlotPolicy(TupleTableSlot *slot, bool shouldFree);
extern TupleDesc ExecSetSlotDescriptor(TupleTableSlot *slot,
TupleDesc tupdesc);
extern void ExecSetSlotDescriptorIsNew(TupleTableSlot *slot, bool isNew);
extern void ExecInitResultTupleSlot(EState *estate, CommonState *commonstate);
extern void ExecInitScanTupleSlot(EState *estate,
CommonScanState *commonscanstate);
-extern void ExecInitMarkedTupleSlot(EState *estate, MergeJoinState *mergestate);
extern void ExecInitOuterTupleSlot(EState *estate, HashJoinState *hashstate);
extern TupleDesc ExecGetTupType(Plan *node);