From 1eb560ff45d6c9e94c6abf344ff00697fd3118be Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 16 Apr 1999 21:27:23 +0000 Subject: [PATCH] Add missing function prototypes to stifle gcc warnings. --- src/include/executor/executor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index e86399c0a6..c290036a4d 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -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); -- 2.39.5