You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ad...@apache.org on 2016/01/09 14:33:59 UTC

drill git commit: DRILL-4174: fix for DRILL-4081 mistakenly regresses the fix for DRILL-3786

Repository: drill
Updated Branches:
  refs/heads/master b9bc35a89 -> 5cb8eb95e


DRILL-4174: fix for DRILL-4081 mistakenly regresses the fix for DRILL-3786


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/5cb8eb95
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/5cb8eb95
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/5cb8eb95

Branch: refs/heads/master
Commit: 5cb8eb95ea98eacf1c262e50ab1ff2714d37fc2c
Parents: b9bc35a
Author: adeneche <ad...@gmail.com>
Authored: Fri Jan 8 11:58:48 2016 -0800
Committer: adeneche <ad...@gmail.com>
Committed: Fri Jan 8 18:39:27 2016 -0800

----------------------------------------------------------------------
 .../apache/drill/exec/physical/impl/xsort/ExternalSortBatch.java    | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/5cb8eb95/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/xsort/ExternalSortBatch.java
----------------------------------------------------------------------
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/xsort/ExternalSortBatch.java b/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/xsort/ExternalSortBatch.java
index 8ea16b3..3dc20dc 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/xsort/ExternalSortBatch.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/xsort/ExternalSortBatch.java
@@ -356,6 +356,7 @@ public class ExternalSortBatch extends AbstractRecordBatch<ExternalSort> {
 
           int count = sv2.getCount();
           totalCount += count;
+          totalBatches++;
           sorter.setup(context, sv2, convertedBatch);
           sorter.sort(sv2);
           RecordBatchData rbd = new RecordBatchData(convertedBatch, oAllocator);