HBASE-15133 Data loss after compaction when a row has more than Integer.MAX_VALUE columns (Toshihiro Suzuki)

This commit is contained in:
tedyu 2016-01-22 02:39:40 -08:00
parent b6f091e0fd
commit b1df2f8c88
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class StoreScanner extends NonReversedNonLazyKeyValueScanner
protected KeyValueHeap heap;
protected boolean cacheBlocks;
protected int countPerRow = 0;
protected long countPerRow = 0;
protected int storeLimit = -1;
protected int storeOffset = 0;