Details
Description
In 1.1.3, ClientSideRegionScanner calls RegionScannerImpl#next() with single argument, so it honors Scan#setBatch(through defaultScannerContext in RegionScannerImpl).
// 1.1.3 public class ClientSideRegionScanner extends AbstractClientScanner { ... @Override public Result next() throws IOException { values.clear(); scanner.nextRaw(values); ...
But in 1.0.3 and 0.98.17, ClientSideRegionScanner calls RegionScannerImpl#next() with limit=-1, so it ignores Scan#setBatch.
// 1.0.3 and 0.98.17 public class ClientSideRegionScanner extends AbstractClientScanner { ... @Override public Result next() throws IOException { values.clear(); scanner.nextRaw(values, -1); // pass -1 as limit so that we see the whole row. ...