summaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-13 21:17:45 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-13 21:17:45 +0000
commitad4948862c861a26094290ba1c9c1e11e5d4f96e (patch)
tree1949e41bc43cfd44fb6d47e901beb45be499bb9c /src/include/nodes/parsenodes.h
parent050371fccdaeac8fa426c8e95aedf4edb541e829 (diff)
downloadpostgresql-ad4948862c861a26094290ba1c9c1e11e5d4f96e.tar.gz
Remove S*I comments from Stephan.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index c427e2a8a7..d804257ba6 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.74 1999/05/25 22:42:57 momjian Exp $
+ * $Id: parsenodes.h,v 1.75 1999/07/13 21:17:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -60,7 +60,6 @@ typedef struct Query
* BY */
Node *havingQual; /* qualification of each group */
- /***S*I***/
List *intersectClause;
List *unionClause; /* unions are linked under the previous
@@ -613,7 +612,6 @@ typedef struct InsertStmt
Node *havingClause; /* having conditional-expression */
List *unionClause; /* union subselect parameters */
bool unionall; /* union without unique sort */
- /***S*I***/
List *intersectClause;
List *forUpdate; /* FOR UPDATE clause */
} InsertStmt;
@@ -656,7 +654,6 @@ typedef struct SelectStmt
Node *whereClause; /* qualifications */
List *groupClause; /* group by clause */
Node *havingClause; /* having conditional-expression */
- /***S*I***/
List *intersectClause;
List *exceptClause;