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:41:02 -08:00
parent fd7862889f
commit 17b5f04270
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;