From 62e29fe2e748933bfd8ab1429518ee7b5a8974a7 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 8 Aug 2000 15:43:12 +0000 Subject: Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' from Param nodes, per discussion a few days ago on pghackers. Add new expression node type FieldSelect that implements the functionality where it's actually needed. Clean up some other unused fields in Func nodes as well. NOTE: initdb forced due to change in stored expression trees for rules. --- src/include/executor/functions.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/include/executor') diff --git a/src/include/executor/functions.h b/src/include/executor/functions.h index 26f2daac535..0e55be1980e 100644 --- a/src/include/executor/functions.h +++ b/src/include/executor/functions.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: functions.h,v 1.12 2000/05/28 17:56:18 tgl Exp $ + * $Id: functions.h,v 1.13 2000/08/08 15:42:39 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,12 +17,8 @@ #include "nodes/parsenodes.h" #include "utils/syscache.h" -extern Datum ProjectAttribute(TupleDesc TD, TargetEntry *tlist, - HeapTuple tup, bool *isnullP); - extern Datum postquel_function(FunctionCallInfo fcinfo, FunctionCachePtr fcache, - List *func_tlist, bool *isDone); #endif /* FUNCTIONS_H */ -- cgit v1.2.3