You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by el...@apache.org on 2016/07/09 21:48:43 UTC

[4/4] phoenix git commit: PHOENIX-3057 Set incremental=false for sqlline-thin

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/f47bcd13
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/f47bcd13
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/f47bcd13

Branch: refs/heads/4.x-HBase-0.98
Commit: f47bcd13e21a81fefbe6a80ba4dd9172bf5a74ea
Parents: 25250fd
Author: Josh Elser <el...@apache.org>
Authored: Thu Jul 7 18:08:54 2016 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Sat Jul 9 17:48:11 2016 -0400

----------------------------------------------------------------------
 bin/sqlline-thin.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/f47bcd13/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)