diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-01-09 20:06:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-01-09 20:06:08 +0000 |
commit | 3d15d1332a16d7fc558262397af1583a7a86fddc (patch) | |
tree | e0e2183dc3e416f23ece54a7fe3cc786169424ec /src/include/nodes/parsenodes.h | |
parent | bf8af2205b31308ebbd8b678b2e4ea50eb5ec6b1 (diff) | |
download | postgresql-3d15d1332a16d7fc558262397af1583a7a86fddc.tar.gz postgresql-3d15d1332a16d7fc558262397af1583a7a86fddc.zip |
Remove old quel labels.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index d288d66aa36..f898880f6de 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.40 1997/12/27 06:41:39 momjian Exp $ + * $Id: parsenodes.h,v 1.41 1998/01/09 20:06:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -570,7 +570,7 @@ typedef struct VariableResetStmt * Insert Statement * ---------------------- */ -typedef struct AppendStmt +typedef struct InsertStmt { NodeTag type; char *relname; /* relation to insert into */ @@ -578,7 +578,7 @@ typedef struct AppendStmt List *targetList; /* the target list (of ResTarget) */ List *fromClause; /* the from clause */ Node *whereClause; /* qualifications */ -} AppendStmt; +} InsertStmt; /* ---------------------- * Delete Statement @@ -595,14 +595,14 @@ typedef struct DeleteStmt * Update Statement * ---------------------- */ -typedef struct ReplaceStmt +typedef struct UpdateStmt { NodeTag type; char *relname; /* relation to update */ List *targetList; /* the target list (of ResTarget) */ Node *whereClause; /* qualifications */ List *fromClause; /* the from clause */ -} ReplaceStmt; +} UpdateStmt; /* ---------------------- * Create Cursor Statement @@ -625,7 +625,7 @@ typedef struct CursorStmt * Select Statement * ---------------------- */ -typedef struct RetrieveStmt +typedef struct SelectStmt { NodeTag type; char *unique; /* NULL, '*', or unique attribute name */ @@ -638,7 +638,7 @@ typedef struct RetrieveStmt List *unionClause; /* union subselect parameters */ List *sortClause; /* sort clause (a list of SortGroupBy's) */ bool unionall; /* union without unique sort */ -} RetrieveStmt; +} SelectStmt; /**************************************************************************** |