diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index a736c1af67e..463ea1518e0 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.81 1999/09/29 16:06:23 wieck Exp $ + * $Id: parsenodes.h,v 1.82 1999/10/02 21:33:33 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -346,7 +346,7 @@ typedef struct IndexStmt char *relname; /* name of relation to index on */ char *accessMethod; /* name of acess methood (eg. btree) */ List *indexParams; /* a list of IndexElem */ - List *withClause; /* a list of ParamString */ + List *withClause; /* a list of DefElem */ Node *whereClause; /* qualifications */ List *rangetable; /* range table, filled in by * transformStmt() */ @@ -367,7 +367,7 @@ typedef struct ProcedureStmt * (as Value *) */ Node *returnType; /* the return type (as a string or a * TypeName (ie.setof) */ - List *withClause; /* a list of ParamString */ + List *withClause; /* a list of DefElem */ List *as; /* the SQL statement or filename */ char *language; /* C or SQL */ } ProcedureStmt; @@ -863,16 +863,6 @@ typedef struct ResTarget } ResTarget; /* - * ParamString - used in WITH clauses - */ -typedef struct ParamString -{ - NodeTag type; - char *name; - char *val; -} ParamString; - -/* * RelExpr - relation expressions */ typedef struct RelExpr |