From e529e9fa4449d77127639b073aa2eed386e367b3 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 13 Feb 2003 05:53:46 +0000 Subject: [ Revert patch ] > ================================================================= > User interface proposal for multi-row function targetlist entries > ================================================================= > 1. Only one targetlist entry may return a set. > 2. Each targetlist item (other than the set returning one) is > repeated for each item in the returned set. > Having gotten no objections (actually, no response at all), I can only assume no one had heartburn with this change. The attached patch covers the first of the two proposals, i.e. restricting the target list to only one set returning function. Joe Conway --- src/include/parser/parse_target.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/parser/parse_target.h') diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h index 3fa67cbf41..b89ed3a30d 100644 --- a/src/include/parser/parse_target.h +++ b/src/include/parser/parse_target.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_target.h,v 1.28 2003/02/13 05:06:35 momjian Exp $ + * $Id: parse_target.h,v 1.29 2003/02/13 05:53:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,7 @@ extern List *transformTargetList(ParseState *pstate, List *targetlist); extern TargetEntry *transformTargetEntry(ParseState *pstate, Node *node, Node *expr, - char *colname, bool resjunk, bool *retset); + char *colname, bool resjunk); extern void updateTargetListEntry(ParseState *pstate, TargetEntry *tle, char *colname, int attrno, List *indirection); -- cgit v1.2.1