HBASE-1358 Bug in reading from Memcache method (read only from snapshot)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@769973 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-04-29 22:27:44 +00:00
parent f826772c81
commit 22f8591fb0
2 changed files with 3 additions and 0 deletions

View File

@ -92,6 +92,8 @@ Release 0.20.0 - Unreleased
HBASE-1320 hbase-1234 broke filter tests
HBASE-1355 [performance] Cache family maxversions; we were calculating on
each access
HBASE-1358 Bug in reading from Memcache method (read only from snapshot)
(Evgeny Ryabitskiy via Stack)
IMPROVEMENTS
HBASE-1089 Add count of regions on filesystem to master UI; add percentage

View File

@ -578,6 +578,7 @@ class Memcache {
if (this.comparator.matchingRowColumn(kv, key)) {
if (Store.doKeyValue(kv, versions, deletes, now, this.ttl, keyvalues,
tailset)) {
enoughVersions = true;
break;
}
} else {