mirror of
https://github.com/postgres/postgres.git
synced 2025-05-09 18:21:05 +03:00
Add missing function prototypes to stifle gcc warnings.
This commit is contained in:
parent
ad5a54d170
commit
1b9f24c878
@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* 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);
|
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 ResetTupleCount(void);
|
||||||
extern void ExecAssignNodeBaseInfo(EState *estate, CommonState *basenode,
|
extern void ExecAssignNodeBaseInfo(EState *estate, CommonState *basenode,
|
||||||
@ -165,6 +165,8 @@ extern void ExecAssignResultTypeFromTL(Plan *node, CommonState *commonstate);
|
|||||||
extern TupleDesc ExecGetResultType(CommonState *commonstate);
|
extern TupleDesc ExecGetResultType(CommonState *commonstate);
|
||||||
extern void ExecAssignProjectionInfo(Plan *node, CommonState *commonstate);
|
extern void ExecAssignProjectionInfo(Plan *node, CommonState *commonstate);
|
||||||
extern void ExecFreeProjectionInfo(CommonState *commonstate);
|
extern void ExecFreeProjectionInfo(CommonState *commonstate);
|
||||||
|
extern void ExecFreeExprContext(CommonState *commonstate);
|
||||||
|
extern void ExecFreeTypeInfo(CommonState *commonstate);
|
||||||
extern TupleDesc ExecGetScanType(CommonScanState *csstate);
|
extern TupleDesc ExecGetScanType(CommonScanState *csstate);
|
||||||
extern void ExecAssignScanType(CommonScanState *csstate,
|
extern void ExecAssignScanType(CommonScanState *csstate,
|
||||||
TupleDesc tupDesc);
|
TupleDesc tupDesc);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user