Uses of Class
unity.query.LQNode

Packages that use LQNode
unity.operators   
unity.query   
 

Uses of LQNode in unity.operators
 

Methods in unity.operators with parameters of type LQNode
static void MemoryManager.allocateQueryMemory(LQNode root, java.util.ArrayList localQueryRootNodes)
           
 

Uses of LQNode in unity.query
 

Subclasses of LQNode in unity.query
 class LQCondNode
           
 class LQDupElimNode
           
 class LQExprNode
           
 class LQGroupByNode
           
 class LQJoinNode
           
 class LQMergeNode
           
 class LQOrderByNode
           
 class LQProductNode
           
 class LQProjNode
           
 class LQSelNode
           
 class LQUnionNode
           
 

Methods in unity.query that return LQNode
 LQNode LQNode.getChild()
           
 LQNode LQNode.getChild(int index)
           
 LQNode GQTableRef.getNode()
           
 LQNode LQOrderByNode.getOrderChild(int index)
           
 LQNode LQNode.getParent()
           
 LQNode LQTree.getRoot()
           
 

Methods in unity.query with parameters of type LQNode
 void LQNode.addChild(LQNode child)
           
 LQCondNode LQTreeBuilder.buildConditionNode(SimpleNode cn, int optype, LQNode groupByNode)
           
 LQExprNode LQTreeBuilder.BuildExpressionNode(int type, SimpleNode sn, int iStartChild, LQNode groupByNode)
           
 boolean LQNode.containsChild(LQNode child)
           
static java.util.ArrayList LQNode.getAllExprNodes(LQNode node)
           
 int LQNode.indexOfChild(LQNode child)
           
static void LQTree.printProgressTree(LQNode root)
           
static void LQTree.printPTree(LQNode root, int depth)
           
static void LQTree.printTree(LQNode root, int depth)
           
 void LQNode.removeChild(LQNode n)
           
 void LQNode.replaceChild(LQNode oldChild, LQNode newChild)
           
 void LQNode.setChild(int idx, LQNode newChild)
           
 void GQTableRef.setNode(LQNode ln)
           
 void LQNode.setParent(LQNode parent)
           
 void LQTree.setRoot(LQNode newRoot)
           
 

Constructors in unity.query with parameters of type LQNode
LQNode(LQNode n)
           
LQTree(LQNode root)