Package org.apache.drill.exec.physical.impl.aggregate.StreamingAggregator

Examples of org.apache.drill.exec.physical.impl.aggregate.StreamingAggregator.AggOutcome


        throw new IllegalStateException(String.format("unknown outcome %s", outcome));
      }
    }

    while(true){
      AggOutcome out = aggregator.doWork();
      logger.debug("Aggregator response {}, records {}", out, aggregator.getOutputCount());
      switch(out){
      case CLEANUP_AND_RETURN:
        if (!first) container.zeroVectors();
        done = true;
View Full Code Here


        throw new IllegalStateException(String.format("unknown outcome %s", outcome));
      }
    }

    while (true) {
      AggOutcome out = aggregator.doWork();
      logger.debug("Aggregator response {}, records {}", out, aggregator.getOutputCount());
      switch (out) {
      case CLEANUP_AND_RETURN:
        if (!first) {
          container.zeroVectors();
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.physical.impl.aggregate.StreamingAggregator.AggOutcome

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.