diff options
author | Bruce Momjian | 1999-07-13 21:17:45 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-07-13 21:17:45 +0000 |
commit | ad4948862c861a26094290ba1c9c1e11e5d4f96e (patch) | |
tree | 1949e41bc43cfd44fb6d47e901beb45be499bb9c /src/include | |
parent | 050371fccdaeac8fa426c8e95aedf4edb541e829 (diff) |
Remove S*I comments from Stephan.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/executor/nodeGroup.h | 3 | ||||
-rw-r--r-- | src/include/nodes/parsenodes.h | 5 | ||||
-rw-r--r-- | src/include/parser/analyze.h | 3 | ||||
-rw-r--r-- | src/include/utils/elog.h | 3 |
4 files changed, 4 insertions, 10 deletions
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h index 5bc3c336799..9be307b2a23 100644 --- a/src/include/executor/nodeGroup.h +++ b/src/include/executor/nodeGroup.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeGroup.h,v 1.10 1999/05/25 16:13:55 momjian Exp $ + * $Id: nodeGroup.h,v 1.11 1999/07/13 21:17:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -23,7 +23,6 @@ extern int ExecCountSlotsGroup(Group *node); extern void ExecEndGroup(Group *node); extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent); -/***S*I***/ extern void ExecReScanGroup(Group *node, ExprContext *exprCtxt, Plan *parent); diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index c427e2a8a71..d804257ba6e 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; diff --git a/src/include/parser/analyze.h b/src/include/parser/analyze.h index 74f48ef4311..d928f0e7a61 100644 --- a/src/include/parser/analyze.h +++ b/src/include/parser/analyze.h @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: analyze.h,v 1.7 1999/05/25 16:14:24 momjian Exp $ + * $Id: analyze.h,v 1.8 1999/07/13 21:17:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,7 +16,6 @@ extern List *parse_analyze(List *pl, ParseState *parentParseState); -/***S*I***/ extern void create_select_list(Node *ptr, List **select_list, bool *unionall_present); extern Node *A_Expr_to_Expr(Node *ptr, bool *intersect_present); diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 39c023f21a1..ae9ca209417 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.10 1999/02/13 23:22:18 momjian Exp $ + * $Id: elog.h,v 1.11 1999/07/13 21:17:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -29,7 +29,6 @@ #define ABORTX 0x4000 /* abort process after logging */ #endif -/***S*I***/ /* Increase this to be able to use postmaster -d 3 with complex * view definitions (which are transformed to very, very large INSERT statements * and if -d 3 is used the query string of these statements is printed using |