HBASE-1763 second commit to fix compile error in hregion
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@803738 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ddddec018
commit
53b0527a5d
|
@ -9,6 +9,7 @@ Release 0.21.0 - Unreleased
|
|||
HBASE-1759 Ability to specify scanner caching on a per-scan basis
|
||||
(Ken Weiner via jgray)
|
||||
HBASE-1763 Put writeToWAL methods do not have proper getter/setter names
|
||||
(second commit to fix compile error in hregion)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
|
|
|
@ -1199,7 +1199,7 @@ public class HRegion implements HConstants, HeapSize { // , Writable{
|
|||
* @throws IOException
|
||||
*/
|
||||
public void put(Put put) throws IOException {
|
||||
this.put(put, null, put.writeToWAL());
|
||||
this.put(put, null, put.getWriteToWAL());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1217,7 +1217,7 @@ public class HRegion implements HConstants, HeapSize { // , Writable{
|
|||
* @throws IOException
|
||||
*/
|
||||
public void put(Put put, Integer lockid) throws IOException {
|
||||
this.put(put, lockid, put.writeToWAL());
|
||||
this.put(put, lockid, put.getWriteToWAL());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue