aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java
diff options
context:
space:
mode:
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java b/exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java
index b86158282..815a5317f 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/vector/allocator/VariableEstimatedVector.java
@@ -29,6 +29,7 @@ public class VariableEstimatedVector extends VectorAllocator{
this.avgWidth = avgWidth;
}
+ @Override
public void alloc(int recordCount){
out.allocateNew(avgWidth * recordCount, recordCount);
}