You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2016/03/05 00:15:58 UTC

calcite git commit: [CALCITE-1122] Sqlline.bat Windows classpath (wanglan)

Repository: calcite
Updated Branches:
  refs/heads/master ec3d8d37c -> c7db615fa


[CALCITE-1122] Sqlline.bat Windows classpath (wanglan)

Close apache/calcite#203


Project: http://git-wip-us.apache.org/repos/asf/calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/c7db615f
Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/c7db615f
Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/c7db615f

Branch: refs/heads/master
Commit: c7db615fa3432efeaa55bd3962758d48635c9e5c
Parents: ec3d8d3
Author: wanglan <la...@huawei.com>
Authored: Fri Mar 4 14:18:14 2016 +0800
Committer: Julian Hyde <jh...@apache.org>
Committed: Fri Mar 4 15:02:00 2016 -0800

----------------------------------------------------------------------
 example/csv/sqlline.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/c7db615f/example/csv/sqlline.bat
----------------------------------------------------------------------
diff --git a/example/csv/sqlline.bat b/example/csv/sqlline.bat
index 9299896..ac7bfc3 100644
--- a/example/csv/sqlline.bat
+++ b/example/csv/sqlline.bat
@@ -23,6 +23,6 @@
 :: Copy dependency jars on first call. (To force jar refresh, remove target\dependencies)
 if not exist target\dependencies (call mvn -B dependency:copy-dependencies -DoverWriteReleases=false -DoverWriteSnapshots=false -DoverWriteIfNewer=true -DoutputDirectory=target\dependencies)
 
-java -Xmx1G -cp ".\target\dependencies\*" sqlline.SqlLine --verbose=true %*
+java -Xmx1G -cp ".\target\test-classes;.\target\classes;.\target\dependencies\*" sqlline.SqlLine --verbose=true %*
 
 :: End sqlline.bat