HBASE-1525

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@784960 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Rawson 2009-06-15 20:16:40 +00:00
parent 32a380b12a
commit 65a2c85f2a
2 changed files with 3 additions and 3 deletions

View File

@ -178,6 +178,8 @@ Release 0.20.0 - Unreleased
HBASE-1520 StoreFileScanner catches and ignore IOExceptions from HFile HBASE-1520 StoreFileScanner catches and ignore IOExceptions from HFile
HBASE-1522 We delete splits before their time occasionally HBASE-1522 We delete splits before their time occasionally
HBASE-1523 NPE in BaseScanner HBASE-1523 NPE in BaseScanner
HBASE-1525 HTable.incrementColumnValue hangs()
IMPROVEMENTS IMPROVEMENTS
HBASE-1089 Add count of regions on filesystem to master UI; add percentage HBASE-1089 Add count of regions on filesystem to master UI; add percentage

View File

@ -2268,9 +2268,7 @@ public class HRegion implements HConstants { // , Writable{
Store store = stores.get(family); Store store = stores.get(family);
result = store.incrementColumnValue(row, family, qualifier, amount); result = store.incrementColumnValue(row, family, qualifier, amount);
} finally { } finally {
if(lid == null) { releaseRowLock(lid);
releaseRowLock(lid);
}
} }
return result; return result;
} }