summaryrefslogtreecommitdiff
path: root/src/include/parser/parse_target.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-05-21 03:53:51 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-05-21 03:53:51 +0000
commit9f3d63936b0e155f71a020dc0255c323b9e67c2a (patch)
tree0548dbbcdaf4cdf9895655535c7059aabbccea7b /src/include/parser/parse_target.h
parenta45341979fa16d67536d35c4b1346544c028890d (diff)
From: David Hartwig <daveh@insightdist.com>
Here is a patch to remove the requirement that ORDER/GROUP BY clause identifiers be included in the target list.
Diffstat (limited to 'src/include/parser/parse_target.h')
-rw-r--r--src/include/parser/parse_target.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h
index 98dd31f68c3..cb75d61615e 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.4 1998/02/26 04:42:49 momjian Exp $
+ * $Id: parse_target.h,v 1.5 1998/05/21 03:53:51 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -24,5 +24,7 @@
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);
#endif /* PARSE_TARGET_H */