diff --git a/CHANGES.txt b/CHANGES.txt index 053dc98f84e..3f36d6d9ee9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,7 +5,10 @@ Release 0.21.0 - Unreleased BUG FIXES IMPROVEMENTS - HBASE-1760 Cleanup TODOs in HTable + HBASE-1760 Cleanup TODOs in HTable + 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 OPTIMIZATIONS @@ -561,8 +564,6 @@ Release 0.20.0 - Unreleased region info HBASE-1743 [debug tool] Add regionsInTransition list to ClusterStatus detailed output - HBASE-1759 Ability to specify scanner caching on a per-scan basis - (Ken Weiner via jgray) OPTIMIZATIONS HBASE-1412 Change values for delete column and column family in KeyValue diff --git a/src/java/org/apache/hadoop/hbase/client/Put.java b/src/java/org/apache/hadoop/hbase/client/Put.java index d8f44512740..76cfae78ff3 100644 --- a/src/java/org/apache/hadoop/hbase/client/Put.java +++ b/src/java/org/apache/hadoop/hbase/client/Put.java @@ -245,7 +245,7 @@ public class Put implements HeapSize, Writable, Comparable { /** * @return true if edits should be applied to WAL, false if not */ - public boolean writeToWAL() { + public boolean getWriteToWAL() { return this.writeToWAL; } @@ -254,7 +254,7 @@ public class Put implements HeapSize, Writable, Comparable { * Not writing the WAL means you may lose edits on server crash. * @param write true if edits should be written to WAL, false if not */ - public void writeToWAL(boolean write) { + public void setWriteToWAL(boolean write) { this.writeToWAL = write; }