Class UDAFQueryOperator


  • public class UDAFQueryOperator
    extends QueryOperator
    For a UDAFPlan, we construct an inner AggregationPlan for it. Example: select count(a)/count(b),count(a)+sum(b) from root.sg To init inner AggregationPlan, we will convert it to statement: select count(a),count(b),count(a),sum(b) from root.sg innerResultColumnsCache will be [count(a),count(b),sum(b)]