Skip to content

Commit

Permalink
fix count error
Browse files Browse the repository at this point in the history
  • Loading branch information
marsishandsome committed Jul 1, 2019
1 parent ee52ff0 commit 29457da
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@ private boolean readNextRegionChunks() {
}

taskIndex++;
return advanceNextResponse();
if (advanceNextResponse()) {
return true;
} else {
return readNextRegionChunks();
}
}

private SelectResponse process(RangeSplitter.RegionTask regionTask) {
Expand Down

0 comments on commit 29457da

Please sign in to comment.