aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-04-16 21:27:23 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-04-16 21:27:23 +0000
commit1b9f24c87850416f6c1826210b281cfce824b25f (patch)
treeb739f1de8a7256f98fd11950a5761cfd053eb435 /src
parentad5a54d1707dabe723ac0e9b6b05fc2a324b3f04 (diff)
downloadpostgresql-1b9f24c87850416f6c1826210b281cfce824b25f.tar.gz
postgresql-1b9f24c87850416f6c1826210b281cfce824b25f.zip
Add missing function prototypes to stifle gcc warnings.
Diffstat (limited to 'src')
-rw-r--r--src/include/executor/executor.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index 2bb8109ecfb..456bade9796 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.31 1999/02/13 23:21:23 momjian Exp $
+ * $Id: executor.h,v 1.32 1999/04/16 21:27:23 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -151,7 +151,7 @@ extern TupleDesc ExecTypeFromTL(List *targetList);
extern void SetChangedParamList(Plan *node, List *newchg);
/*
- * prototypes from functions in execTuples.c
+ * prototypes from functions in execUtils.c
*/
extern void ResetTupleCount(void);
extern void ExecAssignNodeBaseInfo(EState *estate, CommonState *basenode,
@@ -165,6 +165,8 @@ extern void ExecAssignResultTypeFromTL(Plan *node, CommonState *commonstate);
extern TupleDesc ExecGetResultType(CommonState *commonstate);
extern void ExecAssignProjectionInfo(Plan *node, CommonState *commonstate);
extern void ExecFreeProjectionInfo(CommonState *commonstate);
+extern void ExecFreeExprContext(CommonState *commonstate);
+extern void ExecFreeTypeInfo(CommonState *commonstate);
extern TupleDesc ExecGetScanType(CommonScanState *csstate);
extern void ExecAssignScanType(CommonScanState *csstate,
TupleDesc tupDesc);