HBASE-9200 HFilePrettyPrinter finds incorrect largest row

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1513672 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2013-08-13 22:05:19 +00:00
parent ac10b3c13d
commit f0dfc4d1ae
1 changed files with 1 additions and 0 deletions

View File

@ -422,6 +422,7 @@ public class HFilePrettyPrinter {
if (curRowBytes > maxRowBytes && prevKV != null) {
biggestRow = prevKV.getRow();
maxRowBytes = curRowBytes;
}
curRowBytes = 0;