You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2022/03/18 14:07:20 UTC

[incubator-linkis] branch dev-1.1.0 updated: [enhancement] #1724 support clickhouse jdbc (#1752)

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

peacewong pushed a commit to branch dev-1.1.0
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git


The following commit(s) were added to refs/heads/dev-1.1.0 by this push:
     new 06c985c  [enhancement] #1724 support clickhouse jdbc (#1752)
06c985c is described below

commit 06c985c6bc5a2538bac9fd432a4b9f4daf86feb2
Author: huapan123456 <11...@qq.com>
AuthorDate: Fri Mar 18 22:07:11 2022 +0800

    [enhancement] #1724 support clickhouse jdbc (#1752)
    
    * [enhancement] #1724 support clickhouse jdbc
    
    * [enhancement] #1724 add ck jar to known-dependencies.txt
    
    * [update]: #1724 don't import the jar of ck in pom.xml for apache license
    
    Co-authored-by: huapan <hu...@52tt.com>
---
 linkis-engineconn-plugins/engineconn-plugins/jdbc/pom.xml               | 1 -
 .../linkis/manager/engineplugin/jdbc/conf/JDBCConfiguration.scala       | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/linkis-engineconn-plugins/engineconn-plugins/jdbc/pom.xml b/linkis-engineconn-plugins/engineconn-plugins/jdbc/pom.xml
index 4d65a72..a934226 100644
--- a/linkis-engineconn-plugins/engineconn-plugins/jdbc/pom.xml
+++ b/linkis-engineconn-plugins/engineconn-plugins/jdbc/pom.xml
@@ -92,7 +92,6 @@
             <type>pom</type>
         </dependency>
 
-
     </dependencies>
     <build>
         <plugins>
diff --git a/linkis-engineconn-plugins/engineconn-plugins/jdbc/src/main/scala/org/apache/linkis/manager/engineplugin/jdbc/conf/JDBCConfiguration.scala b/linkis-engineconn-plugins/engineconn-plugins/jdbc/src/main/scala/org/apache/linkis/manager/engineplugin/jdbc/conf/JDBCConfiguration.scala
index 86d9b32..a9f6faf 100644
--- a/linkis-engineconn-plugins/engineconn-plugins/jdbc/src/main/scala/org/apache/linkis/manager/engineplugin/jdbc/conf/JDBCConfiguration.scala
+++ b/linkis-engineconn-plugins/engineconn-plugins/jdbc/src/main/scala/org/apache/linkis/manager/engineplugin/jdbc/conf/JDBCConfiguration.scala
@@ -27,7 +27,7 @@ object JDBCConfiguration {
 
   val JDBC_QUERY_TIMEOUT = CommonVars("wds.linkis.jdbc.query.timeout", 1800)
 
-  val JDBC_SUPPORT_DBS = CommonVars("wds.linkis.jdbc.support.dbs", "mysql=>com.mysql.jdbc.Driver,postgresql=>org.postgresql.Driver,oracle=>oracle.jdbc.driver.OracleDriver,hive2=>org.apache.hive.jdbc.HiveDriver,presto=>com.facebook.presto.jdbc.PrestoDriver")
+  val JDBC_SUPPORT_DBS = CommonVars("wds.linkis.jdbc.support.dbs", "mysql=>com.mysql.jdbc.Driver,postgresql=>org.postgresql.Driver,oracle=>oracle.jdbc.driver.OracleDriver,hive2=>org.apache.hive.jdbc.HiveDriver,presto=>com.facebook.presto.jdbc.PrestoDriver,clickhouse=>ru.yandex.clickhouse.ClickHouseDriver")
 
   val JDBC_SUPPORT_DBS_VALIDATION_QUERY = CommonVars("wds.linkis.jdbc.support.dbs.validation.query", "mysql=>SELECT 1,postgresql=>SELECT 1,oracle=>SELECT 1 FROM dual,hive2=>SELECT 1,presto=>SELECT 1")
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org