diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-06-05 03:49:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-06-05 03:49:20 +0000 |
commit | 2e6159311ace7a0bdbc82bdb3c537ba16aea5e4d (patch) | |
tree | 92043869bf43071abdcf918e1bbef6576daa1bc1 /src/include/parser/parse_target.h | |
parent | a576a60e3f24e6c7a81442f0e7c8615e43819d8a (diff) | |
download | postgresql-2e6159311ace7a0bdbc82bdb3c537ba16aea5e4d.tar.gz postgresql-2e6159311ace7a0bdbc82bdb3c537ba16aea5e4d.zip |
I made several adjustments to my earlier patch to handle the
condition where the target label is ambiguous.
Diffstat (limited to 'src/include/parser/parse_target.h')
-rw-r--r-- | src/include/parser/parse_target.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h index 466f0329b6a..2275c283ce6 100644 --- a/src/include/parser/parse_target.h +++ b/src/include/parser/parse_target.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_target.h,v 1.6 1998/05/29 14:07:50 thomas Exp $ + * $Id: parse_target.h,v 1.7 1998/06/05 03:49:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -24,9 +24,8 @@ extern List *transformTargetList(ParseState *pstate, List *targetlist); extern List *makeTargetNames(ParseState *pstate, List *cols); -extern void transformTargetId(ParseState *pstate, Ident *ident, - TargetEntry *tent, char *resname, - int16 resjunk); +extern void transformTargetId(ParseState *pstate, Node *node, + TargetEntry *tent, char *resname, int16 resjunk); extern Node *coerce_target_expr(ParseState *pstate, Node *expr, Oid type_id, Oid attrtype); |