HBASE-2265 HFile and Memstore should maintain minimum and maximum timestamps
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@963903 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3c080bb8cc
commit
d89cb8d0c5
|
@ -417,7 +417,7 @@ public class StoreFile {
|
|||
|
||||
try {
|
||||
byte [] timerangeBytes = metadataMap.get(TIMERANGE_KEY);
|
||||
if (b != null) {
|
||||
if (timerangeBytes != null) {
|
||||
this.reader.timeRangeTracker = new TimeRangeTracker();
|
||||
Writables.copyWritable(timerangeBytes, this.reader.timeRangeTracker);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue