mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 03:08:01 +08:00
cherry-pick Upgrade clickhouse jdbc driver #12639
This commit is contained in:
parent
1e816cc757
commit
fc67fab006
@ -69,7 +69,7 @@
|
||||
<hive-jdbc.version>2.3.9</hive-jdbc.version>
|
||||
<commons-io.version>2.11.0</commons-io.version>
|
||||
<oshi-core.version>6.1.1</oshi-core.version>
|
||||
<clickhouse-jdbc.version>0.1.52</clickhouse-jdbc.version>
|
||||
<clickhouse-jdbc.version>0.3.2-patch11</clickhouse-jdbc.version>
|
||||
<lz4-java.version>1.4.0</lz4-java.version>
|
||||
<mssql-jdbc.version>6.1.0.jre8</mssql-jdbc.version>
|
||||
<presto-jdbc.version>0.238.1</presto-jdbc.version>
|
||||
@ -551,7 +551,7 @@
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>ru.yandex.clickhouse</groupId>
|
||||
<groupId>com.clickhouse</groupId>
|
||||
<artifactId>clickhouse-jdbc</artifactId>
|
||||
<version>${clickhouse-jdbc.version}</version>
|
||||
</dependency>
|
||||
|
@ -28,7 +28,7 @@ public class DataSourceConstants {
|
||||
public static final String COM_MYSQL_CJ_JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
|
||||
public static final String COM_MYSQL_JDBC_DRIVER = "com.mysql.jdbc.Driver";
|
||||
public static final String ORG_APACHE_HIVE_JDBC_HIVE_DRIVER = "org.apache.hive.jdbc.HiveDriver";
|
||||
public static final String COM_CLICKHOUSE_JDBC_DRIVER = "ru.yandex.clickhouse.ClickHouseDriver";
|
||||
public static final String COM_CLICKHOUSE_JDBC_DRIVER = "com.clickhouse.jdbc.ClickHouseDriver";
|
||||
public static final String COM_ORACLE_JDBC_DRIVER = "oracle.jdbc.OracleDriver";
|
||||
public static final String COM_SQLSERVER_JDBC_DRIVER = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
|
||||
public static final String COM_DB2_JDBC_DRIVER = "com.ibm.db2.jcc.DB2Driver";
|
||||
|
@ -105,7 +105,7 @@
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>ru.yandex.clickhouse</groupId>
|
||||
<groupId>com.clickhouse</groupId>
|
||||
<artifactId>clickhouse-jdbc</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
|
@ -41,7 +41,7 @@
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>ru.yandex.clickhouse</groupId>
|
||||
<groupId>com.clickhouse</groupId>
|
||||
<artifactId>clickhouse-jdbc</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
|
@ -224,7 +224,7 @@ The text of each license is also included at licenses/LICENSE-[project].txt.
|
||||
byte-buddy 1.9.16: https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy/1.9.16, Apache 2.0
|
||||
caffeine 2.9.3: https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.9.3, Apache 2.0
|
||||
classmate 1.5.1: https://mvnrepository.com/artifact/com.fasterxml/classmate/1.5.1, Apache 2.0
|
||||
clickhouse-jdbc 0.1.52: https://mvnrepository.com/artifact/ru.yandex.clickhouse/clickhouse-jdbc/0.1.52, Apache 2.0
|
||||
clickhouse-jdbc 0.3.2-patch11: https://mvnrepository.com/artifact/com.clickhouse/clickhouse-jdbc/0.3.2-patch11, Apache 2.0
|
||||
lz4-java 1.4.0: https://mvnrepository.com/artifact/org.lz4/lz4-java/1.4.0, Apache 2.0
|
||||
commons-beanutils 1.9.4 https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils/1.9.4, Apache 2.0
|
||||
commons-cli 1.2: https://mvnrepository.com/artifact/commons-cli/commons-cli/1.2, Apache 2.0
|
||||
|
@ -302,7 +302,7 @@ public class TaskConstants {
|
||||
public static final String ORG_POSTGRESQL_DRIVER = "org.postgresql.Driver";
|
||||
public static final String COM_MYSQL_CJ_JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
|
||||
public static final String ORG_APACHE_HIVE_JDBC_HIVE_DRIVER = "org.apache.hive.jdbc.HiveDriver";
|
||||
public static final String COM_CLICKHOUSE_JDBC_DRIVER = "ru.yandex.clickhouse.ClickHouseDriver";
|
||||
public static final String COM_CLICKHOUSE_JDBC_DRIVER = "com.clickhouse.jdbc.ClickHouseDriver";
|
||||
public static final String COM_ORACLE_JDBC_DRIVER = "oracle.jdbc.driver.OracleDriver";
|
||||
public static final String COM_SQLSERVER_JDBC_DRIVER = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
|
||||
public static final String COM_DB2_JDBC_DRIVER = "com.ibm.db2.jcc.DB2Driver";
|
||||
|
@ -27,7 +27,10 @@ checker-qual-3.19.0.jar
|
||||
checker-qual-3.5.0.jar
|
||||
classgraph-4.8.83.jar
|
||||
classmate-1.5.1.jar
|
||||
clickhouse-jdbc-0.1.52.jar
|
||||
clickhouse-jdbc-0.3.2-patch11.jar
|
||||
clickhouse-cli-client-0.3.2-patch11-shaded.jar
|
||||
clickhouse-grpc-client-0.3.2-patch11-shaded.jar
|
||||
clickhouse-http-client-0.3.2-patch11-shaded.jar
|
||||
lz4-java-1.4.0.jar
|
||||
commons-beanutils-1.9.4.jar
|
||||
commons-cli-1.2.jar
|
||||
|
Loading…
Reference in New Issue
Block a user