Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 15D9D200B4E for ; Sat, 9 Jul 2016 23:48:42 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 12EC0160A67; Sat, 9 Jul 2016 21:48:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 81A60160A74 for ; Sat, 9 Jul 2016 23:48:41 +0200 (CEST) Received: (qmail 25298 invoked by uid 500); 9 Jul 2016 21:48:40 -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 25225 invoked by uid 99); 9 Jul 2016 21:48:40 -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; Sat, 09 Jul 2016 21:48:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 86BCDE0B49; Sat, 9 Jul 2016 21:48:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@phoenix.apache.org Date: Sat, 09 Jul 2016 21:48:42 -0000 Message-Id: <7e2d3619e7e34605b9dac736c6316776@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [3/4] phoenix git commit: PHOENIX-3057 Set incremental=false for sqlline-thin archived-at: Sat, 09 Jul 2016 21:48:42 -0000 PHOENIX-3057 Set incremental=false for sqlline-thin Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/ee61a3c7 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/ee61a3c7 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/ee61a3c7 Branch: refs/heads/4.x-HBase-1.0 Commit: ee61a3c7927dd3d685a6ea9db6d8bfbb45d28f07 Parents: 053354b Author: Josh Elser Authored: Thu Jul 7 18:08:54 2016 -0400 Committer: Josh Elser Committed: Sat Jul 9 17:48:03 2016 -0400 ---------------------------------------------------------------------- bin/sqlline-thin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/ee61a3c7/bin/sqlline-thin.py ---------------------------------------------------------------------- diff --git a/bin/sqlline-thin.py b/bin/sqlline-thin.py index 73b7b42..12501dc 100755 --- a/bin/sqlline-thin.py +++ b/bin/sqlline-thin.py @@ -152,7 +152,7 @@ java_cmd = java + ' $PHOENIX_OPTS ' + \ " org.apache.phoenix.queryserver.client.SqllineWrapper -d org.apache.phoenix.queryserver.client.Driver " + \ " -u \"jdbc:phoenix:thin:url=" + url + ";serialization=" + serialization + "\"" + \ " -n none -p none --color=" + colorSetting + " --fastConnect=false --verbose=true " + \ - " --isolation=TRANSACTION_READ_COMMITTED " + sqlfile + " --incremental=false --isolation=TRANSACTION_READ_COMMITTED " + sqlfile exitcode = subprocess.call(java_cmd, shell=True) sys.exit(exitcode)