You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by sa...@apache.org on 2016/03/02 17:53:18 UTC

phoenix git commit: PHOENIX-2730 Fix min hbase versions for scanner lease renewal.

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.0 7f637ae3d -> c487f9dda


PHOENIX-2730 Fix min hbase versions for scanner lease renewal.


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

Branch: refs/heads/4.x-HBase-1.0
Commit: c487f9dda6544bfb2addbd5e0201fc4b87001ec0
Parents: 7f637ae
Author: Samarth <sa...@salesforce.com>
Authored: Wed Mar 2 08:53:05 2016 -0800
Committer: Samarth <sa...@salesforce.com>
Committed: Wed Mar 2 08:53:05 2016 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/c487f9dd/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java
index 2da80be..34d4e54 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixDatabaseMetaData.java
@@ -295,7 +295,7 @@ public class PhoenixDatabaseMetaData implements DatabaseMetaData {
     private final ResultSet emptyResultSet;
     public static final int MAX_LOCAL_SI_VERSION_DISALLOW = VersionUtil.encodeVersion("0", "98", "8");
     public static final int MIN_LOCAL_SI_VERSION_DISALLOW = VersionUtil.encodeVersion("0", "98", "6");
-    public static final int MIN_RENEW_LEASE_VERSION = VersionUtil.encodeVersion("1", "0", "4");
+    public static final int MIN_RENEW_LEASE_VERSION = VersionUtil.encodeVersion("1", "0", "3");
     
     // Version below which we should turn off essential column family.
     public static final int ESSENTIAL_FAMILY_VERSION_THRESHOLD = VersionUtil.encodeVersion("0", "94", "7");