HBASE-3802 Redundant list creation in HRegion
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1095453 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0925f86a55
commit
6385b39cf4
|
@ -78,6 +78,7 @@ Release 0.91.0 - Unreleased
|
||||||
HBASE-3790 Fix NPE in ExecResult.write() with null return value
|
HBASE-3790 Fix NPE in ExecResult.write() with null return value
|
||||||
HBASE-3781 hbase shell cannot start "NoMethodError: undefined method
|
HBASE-3781 hbase shell cannot start "NoMethodError: undefined method
|
||||||
`close' for nil:NilClass" (Mikael Sitruk)
|
`close' for nil:NilClass" (Mikael Sitruk)
|
||||||
|
HBASE-3802 Redundant list creation in HRegion
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
||||||
|
|
|
@ -3092,8 +3092,7 @@ public class HRegion implements HeapSize { // , Writable{
|
||||||
get.addFamily(family);
|
get.addFamily(family);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
List<KeyValue> results = new ArrayList<KeyValue>();
|
List<KeyValue> results = get(get, true);
|
||||||
results = get(get, true);
|
|
||||||
return new Result(results);
|
return new Result(results);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue