io.grpc
@@ -69,7 +71,21 @@
1.6.2
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+
+
+ attach-javadocs
+
+ jar
+
+
+
+
+
org.xolstice.maven.plugins
protobuf-maven-plugin
@@ -90,6 +106,7 @@
+
org.apache.maven.plugins
maven-enforcer-plugin
@@ -108,6 +125,81 @@
+
+
+ org.sonatype.plugins
+ nexus-staging-maven-plugin
+ 1.6.8
+ true
+
+ sonatype_releases
+ https://oss.sonatype.org/
+ false
+
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 3.2.0
+
+
+ attach-sources
+
+ jar-no-fork
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-gpg-plugin
+ 1.6
+
+
+ gpg
+ verify
+
+ sign
+
+
+
+
+
+
+
+ The Apache Software License, Version 2.0
+ http://www.apache.org/licenses/LICENSE-2.0.txt
+ repo
+
+
+
+
+ https://github.com/sql-machine-learning/jsqlflow/tree/develop
+
+
+
+
+ weiguoz
+ myxjtu@gmail.com
+ http://sqlflow.org/
+ +8
+
+
+
+
+
+ sonatype_releases
+ Nexus Release Repository
+ https://oss.sonatype.org/service/local/staging/deploy/maven2
+
+
+ sonatype_snapshots
+ Nexus Snapshot Repository
+ https://oss.sonatype.org/content/repositories/snapshots
+
+
\ No newline at end of file
diff --git a/src/main/java/org/sqlflow/client/SQLFlow.java b/src/main/java/org/sqlflow/client/SQLFlow.java
index 322275b..42e8150 100644
--- a/src/main/java/org/sqlflow/client/SQLFlow.java
+++ b/src/main/java/org/sqlflow/client/SQLFlow.java
@@ -32,12 +32,7 @@ public interface SQLFlow {
* Submit a task to SQLFlow server. This method return immediately.
*
* @param session: specify dbConnStr(datasource), user Id ...
- * datasource == maxcomputer
- * maxcompute://{accesskey_id}:{accesskey_secret}@{endpoint}?curr_project={curr_project}&scheme={scheme}
- *
datasource == mysql
- * mysql://{username}:{password}@tcp({address})/{dbname}[?param1=value1&...¶mN=valueN]
- *
datasource == hive
- * hive://user:password@ip:port/dbname[?auth=&session.=...&session=valueN]
+ * mysql://root:root@tcp(localhost)/iris
* @param sql: sql program.
* Example: "SELECT * FROM iris.test; SELECT * FROM iris.iris TO TRAIN DNNClassifier
* COLUMN..." *