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:
Ryan Rawson 2010-07-13 23:17:59 +00:00
parent 3c080bb8cc
commit d89cb8d0c5
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ public class StoreFile {
try { try {
byte [] timerangeBytes = metadataMap.get(TIMERANGE_KEY); byte [] timerangeBytes = metadataMap.get(TIMERANGE_KEY);
if (b != null) { if (timerangeBytes != null) {
this.reader.timeRangeTracker = new TimeRangeTracker(); this.reader.timeRangeTracker = new TimeRangeTracker();
Writables.copyWritable(timerangeBytes, this.reader.timeRangeTracker); Writables.copyWritable(timerangeBytes, this.reader.timeRangeTracker);
} }