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

Method treesToThrift

fe/src/main/java/org/apache/impala/analysis/Expr.java:958–965  ·  view source on GitHub ↗
(List<? extends Expr> exprs,
      ThriftSerializationCtx serialCtx)

Source from the content-addressed store, hash-verified

956 }
957
958 public static List<TExpr> treesToThrift(List<? extends Expr> exprs,
959 ThriftSerializationCtx serialCtx) {
960 List<TExpr> result = new ArrayList<>();
961 for (Expr expr: exprs) {
962 result.add(expr.treeToThrift(serialCtx));
963 }
964 return result;
965 }
966
967 public static List<TExpr> treesToThrift(List<? extends Expr> exprs) {
968 return treesToThrift(exprs, new ThriftSerializationCtx());

Callers 15

toThriftImplMethod · 0.95
toThriftImplMethod · 0.95
toThriftImplMethod · 0.95
toThriftMethod · 0.95
toThriftMethod · 0.95
toThriftMethod · 0.95
toThriftMethod · 0.95
toThriftImplMethod · 0.95
toThriftMethod · 0.95
toThriftMethod · 0.95
toThriftMethod · 0.95
toThriftMethod · 0.95

Calls 2

addMethod · 0.45
treeToThriftMethod · 0.45

Tested by

no test coverage detected