aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1996-10-30 02:02:41 +0000
committerBruce Momjian <bruce@momjian.us>1996-10-30 02:02:41 +0000
commitf59a46a8c81caad3c47a3595bd1712658b7c1f25 (patch)
tree1281813811c918f065492ce385a0947346f24a15 /src/include/nodes/parsenodes.h
parent1dfe4eaeb1c5e3f823e71e32c88ec4794fee1dde (diff)
downloadpostgresql-f59a46a8c81caad3c47a3595bd1712658b7c1f25.tar.gz
postgresql-f59a46a8c81caad3c47a3595bd1712658b7c1f25.zip
Parser Overhaul
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 67556446606..61e20dc2be9 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.3 1996/10/19 04:49:29 scrappy Exp $
+ * $Id: parsenodes.h,v 1.4 1996/10/30 02:02:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -422,8 +422,7 @@ typedef struct AppendStmt {
NodeTag type;
char *relname; /* relation to insert into */
List *cols; /* names of the columns */
- List *exprs; /* the expressions (same order as
- the columns) */
+ List *targetList; /* the target list (of ResTarget) */
List *fromClause; /* the from clause */
Node *whereClause; /* qualifications */
} AppendStmt;