HBASE-1925 IllegalAccessError: Has not been initialized (getMaxSequenceId)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@828776 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-10-22 16:41:39 +00:00
parent 340cf43e09
commit 41cb158f09
2 changed files with 4 additions and 3 deletions

View File

@ -76,6 +76,7 @@ Release 0.21.0 - Unreleased
HBASE-1915 HLog.sync is called way too often, needs to be only called 1x per
RPC
HBASE-1777 column length is not checked before saved to memstore
HBASE-1925 IllegalAccessError: Has not been initialized (getMaxSequenceId)
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable

View File

@ -550,10 +550,10 @@ public class Store implements HConstants, HeapSize {
flushed += this.memstore.heapSizeChange(kv, true);
}
}
// B. Write out the log sequence number that corresponds to this output
// MapFile. The MapFile is current up to and including logCacheFlushId.
StoreFile.appendMetadata(writer, logCacheFlushId);
} finally {
// Write out the log sequence number that corresponds to this output
// hfile. The hfile is current up to and including logCacheFlushId.
StoreFile.appendMetadata(writer, logCacheFlushId);
writer.close();
}
}