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:
parent
32a380b12a
commit
65a2c85f2a
|
@ -178,6 +178,8 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1520 StoreFileScanner catches and ignore IOExceptions from HFile
|
||||
HBASE-1522 We delete splits before their time occasionally
|
||||
HBASE-1523 NPE in BaseScanner
|
||||
HBASE-1525 HTable.incrementColumnValue hangs()
|
||||
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -2268,10 +2268,8 @@ public class HRegion implements HConstants { // , Writable{
|
|||
Store store = stores.get(family);
|
||||
result = store.incrementColumnValue(row, family, qualifier, amount);
|
||||
} finally {
|
||||
if(lid == null) {
|
||||
releaseRowLock(lid);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue