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

Method reset

fe/src/main/java/org/apache/impala/analysis/Expr.java:1253–1260  ·  view source on GitHub ↗

Resets the internal analysis state of this expr tree. Removes implicit casts.

()

Source from the content-addressed store, hash-verified

1251 * Resets the internal analysis state of this expr tree. Removes implicit casts.
1252 */
1253 public Expr reset() {
1254 if (isImplicitCast()) return getChild(0).reset();
1255 for (int i = 0; i < children_.size(); ++i) {
1256 children_.set(i, children_.get(i).reset());
1257 }
1258 resetAnalysisState();
1259 return this;
1260 }
1261
1262 public static List<Expr> resetList(List<Expr> l) {
1263 for (int i = 0; i < l.size(); ++i) {

Callers 1

optimizeConjunctsMethod · 0.95

Calls 7

isImplicitCastMethod · 0.95
resetAnalysisStateMethod · 0.95
getChildMethod · 0.80
resetMethod · 0.65
getMethod · 0.65
sizeMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected