Package org.apache.drill.exec.vector.allocator

Examples of org.apache.drill.exec.vector.allocator.VariableEstimatedVector


 
  private VectorAllocator getAllocator4(ValueVector outgoing){
    if(outgoing instanceof FixedWidthVector){
      return new FixedVectorAllocator((FixedWidthVector) outgoing);
    }else if(outgoing instanceof VariableWidthVector ){
      return new VariableEstimatedVector( (VariableWidthVector) outgoing, 250);
    }else{
      throw new UnsupportedOperationException();
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.vector.allocator.VariableEstimatedVector

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.