Updated Branches: refs/heads/master 10866cf06 -> 56d2cb99d
Increase allocation size until we start using copyFromSafe for the SVRemover. Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/56d2cb99 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/56d2cb99 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/56d2cb99 Branch: refs/heads/master Commit: 56d2cb99d037714d041d6511707de4a66c253b64 Parents: 10866cf Author: Jacques Nadeau <[email protected]> Authored: Thu Sep 5 20:20:37 2013 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Thu Sep 5 20:20:37 2013 -0700 ---------------------------------------------------------------------- .../drill/exec/physical/impl/svremover/RemovingRecordBatch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/56d2cb99/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/RemovingRecordBatch.java ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/RemovingRecordBatch.java b/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/RemovingRecordBatch.java index 0b8e157..aaa6d7e 100644 --- a/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/RemovingRecordBatch.java +++ b/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/svremover/RemovingRecordBatch.java @@ -196,7 +196,7 @@ public class RemovingRecordBatch extends AbstractSingleRecordBatch<SelectionVect if(outgoing instanceof FixedWidthVector){ return new FixedVectorAllocator((FixedWidthVector) outgoing); }else if(outgoing instanceof VariableWidthVector ){ - return new VariableEstimatedVector( (VariableWidthVector) outgoing, 50); + return new VariableEstimatedVector( (VariableWidthVector) outgoing, 250); }else{ throw new UnsupportedOperationException(); }
