Return-Path: X-Original-To: apmail-phoenix-commits-archive@minotaur.apache.org Delivered-To: apmail-phoenix-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E5F6318BB4 for ; Wed, 2 Mar 2016 16:51:33 +0000 (UTC) Received: (qmail 56337 invoked by uid 500); 2 Mar 2016 16:51:33 -0000 Delivered-To: apmail-phoenix-commits-archive@phoenix.apache.org Received: (qmail 56300 invoked by uid 500); 2 Mar 2016 16:51:33 -0000 Mailing-List: contact commits-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list commits@phoenix.apache.org Received: (qmail 56291 invoked by uid 99); 2 Mar 2016 16:51:33 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Mar 2016 16:51:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B046CDFFF8; Wed, 2 Mar 2016 16:51:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: samarth@apache.org To: commits@phoenix.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: phoenix git commit: PHOENIX-2730 Fix min hbase versions for scanner lease renewal Date: Wed, 2 Mar 2016 16:51:33 +0000 (UTC) Repository: phoenix Updated Branches: refs/heads/master 58cf5fa2d -> f97b4af89 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/f97b4af8 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/f97b4af8 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/f97b4af8 Branch: refs/heads/master Commit: f97b4af8982d2e9c1dbe56a14eb3a9cc90b84a98 Parents: 58cf5fa Author: Samarth Authored: Wed Mar 2 08:51:23 2016 -0800 Committer: Samarth Committed: Wed Mar 2 08:51:23 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/f97b4af8/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 26d57fa..67814e8 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", "1", "4"); + public static final int MIN_RENEW_LEASE_VERSION = VersionUtil.encodeVersion("1", "1", "3"); // Version below which we should turn off essential column family. public static final int ESSENTIAL_FAMILY_VERSION_THRESHOLD = VersionUtil.encodeVersion("0", "94", "7");