You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by mm...@apache.org on 2021/03/10 14:19:20 UTC

[ignite] branch master updated: IGNITE-14284 Remove -d option from sqlline invocation. (#8864)

This is an automated email from the ASF dual-hosted git repository.

mmuzaf pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4617f56  IGNITE-14284 Remove -d option from sqlline invocation. (#8864)
4617f56 is described below

commit 4617f5685985a28ecbb8526b0612091852214aad
Author: Ilya Kasnacheev <il...@gmail.com>
AuthorDate: Wed Mar 10 17:18:41 2021 +0300

    IGNITE-14284 Remove -d option from sqlline invocation. (#8864)
---
 modules/sqlline/bin/sqlline.bat | 4 ++--
 modules/sqlline/bin/sqlline.sh  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/sqlline/bin/sqlline.bat b/modules/sqlline/bin/sqlline.bat
index 681a984..4200b63 100644
--- a/modules/sqlline/bin/sqlline.bat
+++ b/modules/sqlline/bin/sqlline.bat
@@ -145,6 +145,6 @@ set CP=%CP%;%IGNITE_HOME%\bin\include\sqlline\*
 :: the Ignite provides --historyfile argument to SQLLine usage
 set SQLLINE_HISTORY=%HOMEPATH%\.sqlline\ignite_history
 
-"%JAVA_HOME%\bin\java.exe" %JVM_OPTS% -cp "%CP%" sqlline.SqlLine --historyFile=%SQLLINE_HISTORY% -d org.apache.ignite.IgniteJdbcThinDriver %*
+"%JAVA_HOME%\bin\java.exe" %JVM_OPTS% -cp "%CP%" sqlline.SqlLine --historyFile=%SQLLINE_HISTORY% %*
 
-:error_finish
\ No newline at end of file
+:error_finish
diff --git a/modules/sqlline/bin/sqlline.sh b/modules/sqlline/bin/sqlline.sh
index 99bb47d..a89566f 100644
--- a/modules/sqlline/bin/sqlline.sh
+++ b/modules/sqlline/bin/sqlline.sh
@@ -104,4 +104,4 @@ CP="${CP}${SEP}${IGNITE_HOME_TMP}/bin/include/sqlline/*"
 # the Ignite provides --historyfile argument to SQLLine usage
 SQLLINE_HISTORY="~/.sqlline/ignite_history"
 
-"$JAVA" ${JVM_OPTS} -cp ${CP} sqlline.SqlLine --historyFile=${SQLLINE_HISTORY} -d org.apache.ignite.IgniteJdbcThinDriver $@
+"$JAVA" ${JVM_OPTS} -cp ${CP} sqlline.SqlLine --historyFile=${SQLLINE_HISTORY} $@