You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/04/19 14:03:44 UTC

[incubator-iotdb] branch fix_import_export_script created (now 56b20b8)

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

qiaojialin pushed a change to branch fix_import_export_script
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


      at 56b20b8  change db to cli in package

This branch includes the following new commits:

     new 56b20b8  change db to cli in package

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-iotdb] 01/01: change db to cli in package

Posted by qi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

qiaojialin pushed a commit to branch fix_import_export_script
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit 56b20b88a2937c81b5e6e01601d086e6ac0d6de8
Author: qiaojialin <64...@qq.com>
AuthorDate: Fri Apr 19 22:03:38 2019 +0800

    change db to cli in package
---
 iotdb-cli/cli/bin/export-csv.bat | 2 +-
 iotdb-cli/cli/bin/export-csv.sh  | 2 +-
 iotdb-cli/cli/bin/import-csv.bat | 2 +-
 iotdb-cli/cli/bin/import-csv.sh  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/iotdb-cli/cli/bin/export-csv.bat b/iotdb-cli/cli/bin/export-csv.bat
index 3d6c1fa..11082e3 100644
--- a/iotdb-cli/cli/bin/export-csv.bat
+++ b/iotdb-cli/cli/bin/export-csv.bat
@@ -25,7 +25,7 @@ pushd %~dp0..
 if NOT DEFINED IOTDB_HOME set IOTDB_HOME=%CD%
 popd
 
-if NOT DEFINED MAIN_CLASS set MAIN_CLASS=org.apache.iotdb.db.tool.ExportCsv
+if NOT DEFINED MAIN_CLASS set MAIN_CLASS=org.apache.iotdb.cli.tool.ExportCsv
 if NOT DEFINED JAVA_HOME goto :err
 
 @REM -----------------------------------------------------------------------------
diff --git a/iotdb-cli/cli/bin/export-csv.sh b/iotdb-cli/cli/bin/export-csv.sh
index 5914ba7..32db7ff 100755
--- a/iotdb-cli/cli/bin/export-csv.sh
+++ b/iotdb-cli/cli/bin/export-csv.sh
@@ -44,7 +44,7 @@ for f in ${IOTDB_HOME}/lib/*.jar; do
     CLASSPATH=${CLASSPATH}":"$f
 done
 
-MAIN_CLASS=org.apache.iotdb.db.tool.ExportCsv
+MAIN_CLASS=org.apache.iotdb.cli.tool.ExportCsv
 
 "$JAVA" -DIOTDB_HOME=${IOTDB_HOME} -cp "$CLASSPATH" "$MAIN_CLASS" "$@"
 exit $?
\ No newline at end of file
diff --git a/iotdb-cli/cli/bin/import-csv.bat b/iotdb-cli/cli/bin/import-csv.bat
index c29b434..875bde7 100644
--- a/iotdb-cli/cli/bin/import-csv.bat
+++ b/iotdb-cli/cli/bin/import-csv.bat
@@ -25,7 +25,7 @@ pushd %~dp0..
 if NOT DEFINED IOTDB_HOME set IOTDB_HOME=%CD%
 popd
 
-if NOT DEFINED MAIN_CLASS set MAIN_CLASS=org.apache.iotdb.db.tool.ImportCsv
+if NOT DEFINED MAIN_CLASS set MAIN_CLASS=org.apache.iotdb.cli.tool.ImportCsv
 if NOT DEFINED JAVA_HOME goto :err
 
 @REM -----------------------------------------------------------------------------
diff --git a/iotdb-cli/cli/bin/import-csv.sh b/iotdb-cli/cli/bin/import-csv.sh
index 6bcd595..eae5044 100755
--- a/iotdb-cli/cli/bin/import-csv.sh
+++ b/iotdb-cli/cli/bin/import-csv.sh
@@ -44,7 +44,7 @@ for f in ${IOTDB_HOME}/lib/*.jar; do
     CLASSPATH=${CLASSPATH}":"$f
 done
 
-MAIN_CLASS=org.apache.iotdb.db.tool.ImportCsv
+MAIN_CLASS=org.apache.iotdb.cli.tool.ImportCsv
 
 "$JAVA" -DIOTDB_HOME=${IOTDB_HOME} -cp "$CLASSPATH" "$MAIN_CLASS" "$@"
 exit $?
\ No newline at end of file