diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/executor/executor.h | 3 | ||||
-rw-r--r-- | src/include/optimizer/planner.h | 7 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 7849e87a78a..ea589e06dd9 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.47 2000/08/06 04:26:27 tgl Exp $ + * $Id: executor.h,v 1.48 2000/08/21 20:55:29 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -84,6 +84,7 @@ extern Datum ExecEvalExprSwitchContext(Node *expression, ExprContext *econtext, bool *isNull, bool *isDone); extern bool ExecQual(List *qual, ExprContext *econtext, bool resultForNull); extern int ExecTargetListLength(List *targetlist); +extern int ExecCleanTargetListLength(List *targetlist); extern TupleTableSlot *ExecProject(ProjectionInfo *projInfo, bool *isDone); /* diff --git a/src/include/optimizer/planner.h b/src/include/optimizer/planner.h index 3f4fc2a38e0..da099940e6e 100644 --- a/src/include/optimizer/planner.h +++ b/src/include/optimizer/planner.h @@ -7,22 +7,19 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: planner.h,v 1.15 2000/03/21 05:11:51 tgl Exp $ + * $Id: planner.h,v 1.16 2000/08/21 20:55:28 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef PLANNER_H #define PLANNER_H -/* -*/ - #include "nodes/parsenodes.h" #include "nodes/plannodes.h" + extern Plan *planner(Query *parse); extern Plan *subquery_planner(Query *parse, double tuple_fraction); extern Plan *union_planner(Query *parse, double tuple_fraction); -extern void pg_checkretval(Oid rettype, List *querytree_list); #endif /* PLANNER_H */ |