MCPcopy Create free account
hub / github.com/apache/impala / getChild

Method getChild

fe/src/main/java/org/apache/impala/common/TreeNode.java:33–35  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

31 protected List<NodeType> children_ = new ArrayList<>();
32
33 public NodeType getChild(int i) {
34 return hasChild(i) ? children_.get(i) : null;
35 }
36
37 public void addChild(NodeType n) {
38 children_.add(n);

Callers 15

verifyCardinalityMethod · 0.80
getPlanNodeMethod · 0.80
typeCastTestMethod · 0.80
checkCastsMethod · 0.80
TestCoalesceDecimalMethod · 0.80
convertToCNFMethod · 0.80
applyMethod · 0.80
applyMethod · 0.80
applyMethod · 0.80

Calls 2

hasChildMethod · 0.95
getMethod · 0.65

Tested by 8

verifyCardinalityMethod · 0.64
getPlanNodeMethod · 0.64
typeCastTestMethod · 0.64
checkCastsMethod · 0.64
TestCoalesceDecimalMethod · 0.64