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/backend/rewrite | |
| parent | 050371fccdaeac8fa426c8e95aedf4edb541e829 (diff) | |
Remove S*I comments from Stephan.
Diffstat (limited to 'src/backend/rewrite')
| -rw-r--r-- | src/backend/rewrite/rewriteHandler.c | 8 | ||||
| -rw-r--r-- | src/backend/rewrite/rewriteManip.c | 11 |
2 files changed, 2 insertions, 17 deletions
diff --git a/src/backend/rewrite/rewriteHandler.c b/src/backend/rewrite/rewriteHandler.c index b4cfe96f5bc..4c525f4f9c1 100644 --- a/src/backend/rewrite/rewriteHandler.c +++ b/src/backend/rewrite/rewriteHandler.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.48 1999/07/11 17:54:30 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.49 1999/07/13 21:17:35 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -24,7 +24,6 @@ #include "parser/parse_relation.h" #include "nodes/parsenodes.h" -/***S*I***/ #include "parser/parse_node.h" #include "parser/parse_target.h" @@ -1692,7 +1691,6 @@ apply_RIR_view(Node **nodePtr, int rt_index, RangeTblEntry *rte, List *tlist, in modified, sublevels_up + 1); - /***S*I***/ tmp_lefthand = sub->lefthand; foreach(tmp_oper, sub->oper) { @@ -2709,8 +2707,6 @@ QueryRewrite(Query *parsetree) List *rewritten, *rewritten_item; - /***S*I***/ - /* * Rewrite Union, Intersect and Except Queries to normal Union Queries * using IN and NOT IN subselects @@ -2741,7 +2737,6 @@ QueryRewrite(Query *parsetree) return rewritten; } -/***S*I***/ /* This function takes two targetlists as arguments and checks if the * targetlists are compatible (i.e. both select for the same number of * attributes and the types are compatible */ @@ -2817,7 +2812,6 @@ check_targetlists_are_compatible(List *prev_target, List *current_target) } } -/***S*I***/ /* Rewrites UNION INTERSECT and EXCEPT queries to semantiacally equivalent * queries that use IN and NOT IN subselects. * diff --git a/src/backend/rewrite/rewriteManip.c b/src/backend/rewrite/rewriteManip.c index d87adef16c2..50f1d8ec7f1 100644 --- a/src/backend/rewrite/rewriteManip.c +++ b/src/backend/rewrite/rewriteManip.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteManip.c,v 1.32 1999/05/26 12:55:48 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteManip.c,v 1.33 1999/07/13 21:17:36 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -163,8 +163,6 @@ OffsetVarNodes(Node *node, int offset, int sublevels_up) offset, sublevels_up + 1); - /***S*I***/ - /* * Make sure the first argument of sub->oper points to the * same var as sub->lefthand does otherwise we will run @@ -383,8 +381,6 @@ ChangeVarNodes(Node *node, int rt_index, int new_index, int sublevels_up) new_index, sublevels_up + 1); - /***S*I***/ - /* * Make sure the first argument of sub->oper points to the * same var as sub->lefthand does otherwise we will run @@ -481,7 +477,6 @@ AddQual(Query *parsetree, Node *qual) if (qual == NULL) return; - /***S*I***/ /* INTERSECT want's the original, but we need to copy - Jan */ /* copy = qual; */ copy = copyObject(qual); @@ -504,7 +499,6 @@ AddHavingQual(Query *parsetree, Node *havingQual) if (havingQual == NULL) return; - /***S*I***/ /* INTERSECT want's the original, but we need to copy - Jan */ /* copy = havingQual; */ copy = copyObject(havingQual); @@ -525,7 +519,6 @@ AddNotHavingQual(Query *parsetree, Node *havingQual) if (havingQual == NULL) return; - /***S*I***/ /* INTERSECT want's the original, but we need to copy - Jan */ /* copy = (Node *) make_notclause((Expr *)havingQual); */ copy = (Node *) make_notclause((Expr *) copyObject(havingQual)); @@ -542,7 +535,6 @@ AddNotQual(Query *parsetree, Node *qual) if (qual == NULL) return; - /***S*I***/ /* INTERSECT want's the original, but we need to copy - Jan */ /* copy = (Node *) make_notclause((Expr *)qual); */ copy = (Node *) make_notclause((Expr *) copyObject(qual)); @@ -1098,7 +1090,6 @@ nodeHandleViewRule(Node **nodePtr, lfirst(sublink->lefthand); - /***S*I***/ /* INTERSECT want's this - Jan */ /* |
