summaryrefslogtreecommitdiff
path: root/src/include/parser/parse_target.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-09-30 00:24:27 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-09-30 00:24:27 +0000
commitf065957062095f1b563d91b8950ee7411055025c (patch)
tree0d05e23168c4ce28044306516c29e96db3291970 /src/include/parser/parse_target.h
parent912c27f9c2a228fbba41547f10a109a338439a2b (diff)
downloadpostgresql-f065957062095f1b563d91b8950ee7411055025c.tar.gz
Come to think of it, functions in FROM have the same syntactic restriction
as CREATE INDEX did, and can be fixed the same way, for another small improvement in usability and reduction in grammar size.
Diffstat (limited to 'src/include/parser/parse_target.h')
-rw-r--r--src/include/parser/parse_target.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h
index e1cd2dcca5..71dfd35c1d 100644
--- a/src/include/parser/parse_target.h
+++ b/src/include/parser/parse_target.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_target.h,v 1.33 2004/08/29 04:13:09 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_target.h,v 1.34 2004/09/30 00:24:27 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -27,5 +27,6 @@ extern void updateTargetListEntry(ParseState *pstate, TargetEntry *tle,
List *indirection);
extern List *checkInsertTargets(ParseState *pstate, List *cols,
List **attrnos);
+extern char *FigureColname(Node *node);
#endif /* PARSE_TARGET_H */