You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by en...@apache.org on 2015/12/17 21:30:30 UTC

[1/5] hbase git commit: HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards

Repository: hbase
Updated Branches:
  refs/heads/0.98 3085e2a7c -> b67d21e37
  refs/heads/branch-1 a93c0e822 -> f3ebeeb3f
  refs/heads/branch-1.0 736f5b3ab -> 2834aff59
  refs/heads/branch-1.1 af1f6ee18 -> 44680a131
  refs/heads/branch-1.2 48466a658 -> 67ac114d1


HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f3ebeeb3
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f3ebeeb3
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f3ebeeb3

Branch: refs/heads/branch-1
Commit: f3ebeeb3fced9cc1cc382e55d00e4fcb0b0390ab
Parents: a93c0e8
Author: Enis Soztutar <en...@apache.org>
Authored: Thu Dec 17 11:48:14 2015 -0800
Committer: Enis Soztutar <en...@apache.org>
Committed: Thu Dec 17 11:48:14 2015 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Mutation.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f3ebeeb3/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
index dbc1317..2b88ffc 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
@@ -238,7 +238,7 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
    */
   @Deprecated
   public boolean getWriteToWAL() {
-    return this.durability == Durability.SKIP_WAL;
+    return this.durability != Durability.SKIP_WAL;
   }
 
   /**


[3/5] hbase git commit: HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards

Posted by en...@apache.org.
HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/44680a13
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/44680a13
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/44680a13

Branch: refs/heads/branch-1.1
Commit: 44680a13111394108f2b9a1102adddcd2747c2b7
Parents: af1f6ee
Author: Enis Soztutar <en...@apache.org>
Authored: Thu Dec 17 11:48:14 2015 -0800
Committer: Enis Soztutar <en...@apache.org>
Committed: Thu Dec 17 11:49:39 2015 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Mutation.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/44680a13/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
index dbc1317..2b88ffc 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
@@ -238,7 +238,7 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
    */
   @Deprecated
   public boolean getWriteToWAL() {
-    return this.durability == Durability.SKIP_WAL;
+    return this.durability != Durability.SKIP_WAL;
   }
 
   /**


[5/5] hbase git commit: HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards

Posted by en...@apache.org.
HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b67d21e3
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b67d21e3
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b67d21e3

Branch: refs/heads/0.98
Commit: b67d21e375c28098bc2a7c23c09ea2eae0338259
Parents: 3085e2a
Author: Enis Soztutar <en...@apache.org>
Authored: Thu Dec 17 11:48:14 2015 -0800
Committer: Enis Soztutar <en...@apache.org>
Committed: Thu Dec 17 11:52:00 2015 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Mutation.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b67d21e3/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
index 5b28eda..f882837 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
@@ -226,7 +226,7 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
    */
   @Deprecated
   public boolean getWriteToWAL() {
-    return this.durability == Durability.SKIP_WAL;
+    return this.durability != Durability.SKIP_WAL;
   }
 
   /**


[2/5] hbase git commit: HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards

Posted by en...@apache.org.
HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/67ac114d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/67ac114d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/67ac114d

Branch: refs/heads/branch-1.2
Commit: 67ac114d1e4cccddc24512e4efd732b0e0f6d540
Parents: 48466a6
Author: Enis Soztutar <en...@apache.org>
Authored: Thu Dec 17 11:48:14 2015 -0800
Committer: Enis Soztutar <en...@apache.org>
Committed: Thu Dec 17 11:48:18 2015 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Mutation.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/67ac114d/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
index dbc1317..2b88ffc 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
@@ -238,7 +238,7 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
    */
   @Deprecated
   public boolean getWriteToWAL() {
-    return this.durability == Durability.SKIP_WAL;
+    return this.durability != Durability.SKIP_WAL;
   }
 
   /**


[4/5] hbase git commit: HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards

Posted by en...@apache.org.
HBASE-14989 Implementation of Mutation.getWriteToWAL() is backwards


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2834aff5
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2834aff5
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2834aff5

Branch: refs/heads/branch-1.0
Commit: 2834aff59a468dd27aeaa2e6c12280f1a30b8d8d
Parents: 736f5b3
Author: Enis Soztutar <en...@apache.org>
Authored: Thu Dec 17 11:48:14 2015 -0800
Committer: Enis Soztutar <en...@apache.org>
Committed: Thu Dec 17 11:50:51 2015 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Mutation.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/2834aff5/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
index dbc1317..2b88ffc 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
@@ -238,7 +238,7 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
    */
   @Deprecated
   public boolean getWriteToWAL() {
-    return this.durability == Durability.SKIP_WAL;
+    return this.durability != Durability.SKIP_WAL;
   }
 
   /**