Class SubstituteExpressionVisitor
java.lang.Object
org.apache.derby.impl.sql.compile.SubstituteExpressionVisitor
- All Implemented Interfaces:
Visitor
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSubstituteExpressionVisitor(ValueNode s, ValueNode t, Class<?> skipThisClass) -
Method Summary
Modifier and TypeMethodDescription(package private) ValueNodeused by GroupByNode to process expressions by complexity level.booleanskipChildren(Visitable node) Method that is called to indicate whether we should skip all nodes below this node for traversal.booleanMethod that is called to see if query tree traversal should be stopped before visiting all nodes.This is the default visit operation on a QueryTreeNode.booleanvisitChildrenFirst(Visitable node) Method that is called to see ifvisit()should be called on the children ofnodebefore it is called onnodeitself.
-
Field Details
-
source
-
target
-
skipOverClass
-
-
Constructor Details
-
SubstituteExpressionVisitor
-
-
Method Details
-
getSource
ValueNode getSource()used by GroupByNode to process expressions by complexity level. -
visit
Description copied from interface:VisitorThis is the default visit operation on a QueryTreeNode. It just returns the node. This will typically suffice as the default visit operation for most visitors unless the visitor needs to count the number of nodes visited or something like that.Visitors will overload this method by implementing a version with a signature that matches a specific type of node. For example, if I want to do something special with aggregate nodes, then that Visitor will implement a visit(AggregateNode node) method which does the aggregate specific processing.
- Specified by:
visitin interfaceVisitor- Parameters:
node- the node to process- Returns:
- a query tree node. Often times this is the same node that was passed in, but Visitors that replace nodes with other nodes will use this to return the new replacement node.
- Throws:
StandardException- may be throw an error as needed by the visitor (i.e. may be a normal error if a particular node is found, e.g. if checking a group by, we don't expect to find any ColumnReferences that aren't under an AggregateNode -- the easiest thing to do is just throw an error when we find the questionable node).
-
stopTraversal
public boolean stopTraversal()Description copied from interface:VisitorMethod that is called to see if query tree traversal should be stopped before visiting all nodes. Useful for short circuiting traversal if we already know we are done.- Specified by:
stopTraversalin interfaceVisitor- Returns:
- true/false
-
skipChildren
Description copied from interface:VisitorMethod that is called to indicate whether we should skip all nodes below this node for traversal. Useful if we want to effectively ignore/prune all branches under a particular node.Differs from stopTraversal() in that it only affects subtrees, rather than the entire traversal.
- Specified by:
skipChildrenin interfaceVisitor- Parameters:
node- the node to process- Returns:
- true/false
-
visitChildrenFirst
Description copied from interface:VisitorMethod that is called to see ifvisit()should be called on the children ofnodebefore it is called onnodeitself. If this method always returnstrue, the visitor will walk the tree bottom-up. If it always returnsfalse, the tree is visited top-down.- Specified by:
visitChildrenFirstin interfaceVisitor- Parameters:
node- the top node of a sub-tree about to be visited- Returns:
trueifnode's children should be visited beforenode,falseotherwise
-