1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Update comments for some parse node types.

This commit is contained in:
Tom Lane
2000-08-11 23:46:54 +00:00
parent 4951a8826d
commit c333d2b329
2 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.110 2000/07/15 00:01:38 tgl Exp $
* $Id: parsenodes.h,v 1.111 2000/08/11 23:46:54 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -490,8 +490,8 @@ typedef struct ProcedureStmt
Node *returnType; /* the return type (as a string or a
* TypeName (ie.setof) */
List *withClause; /* a list of DefElem */
List *as; /* the SQL statement or filename */
char *language; /* C or SQL */
List *as; /* definition of function body */
char *language; /* C, SQL, etc */
} ProcedureStmt;
/* ----------------------
@@ -804,7 +804,7 @@ typedef struct DeleteStmt
NodeTag type;
char *relname; /* relation to delete from */
Node *whereClause; /* qualifications */
bool inh; /* delete from subclasses */
bool inh; /* delete from subclasses */
} DeleteStmt;
/* ----------------------
@@ -818,7 +818,7 @@ typedef struct UpdateStmt
List *targetList; /* the target list (of ResTarget) */
Node *whereClause; /* qualifications */
List *fromClause; /* the from clause */
bool inh; /* update subclasses */
bool inh; /* update subclasses */
} UpdateStmt;
/* ----------------------