HBASE-1523 - NPE in BaseScanner
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@784670 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3f02e3be7a
commit
32a380b12a
|
@ -177,6 +177,7 @@ Release 0.20.0 - Unreleased
|
|||
earlied-out of previous row (Jon Gray)
|
||||
HBASE-1520 StoreFileScanner catches and ignore IOExceptions from HFile
|
||||
HBASE-1522 We delete splits before their time occasionally
|
||||
HBASE-1523 NPE in BaseScanner
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -298,7 +298,7 @@ abstract class BaseScanner extends Chore implements HConstants {
|
|||
throws IOException {
|
||||
boolean result = false;
|
||||
HRegionInfo split =
|
||||
Writables.getHRegionInfo(rowContent.getValue(splitFamily, splitQualifier));
|
||||
Writables.getHRegionInfoOrNull(rowContent.getValue(splitFamily, splitQualifier));
|
||||
if (split == null) {
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue