gong commented on code in PR #4882:
URL: https://github.com/apache/inlong/pull/4882#discussion_r934339275


##########
inlong-sort/sort-end-to-end-tests/src/test/resources/flinkSql/clickhouse_test.sql:
##########
@@ -0,0 +1,33 @@
+CREATE TABLE test_input1 (
+    `id` INT primary key,
+    name STRING,
+    description STRING
+) WITH (
+    'connector' = 'mysql-cdc-inlong',
+    'hostname' = 'mysql',
+    'port' = '3306',
+    'username' = 'inlong',
+    'password' = 'inlong',
+    'database-name' = 'test',
+    'table-name' = 'test_input1',
+    'scan.incremental.snapshot.chunk.size' = '4',
+    'scan.incremental.snapshot.enabled' = 'false'
+);
+
+CREATE TABLE test_output1 (
+    `id` INT primary key,
+    name STRING,
+    description STRING
+) WITH (
+    'connector' = 'jdbc-inlong',
+    'url' = 'jdbc:clickhouse://clickhouse:8123/default',
+    'table-name' = 'test_output1',
+    'username' = 'default',
+    'password' = ''

Review Comment:
   Add option 
"dialect-impl"="org.apache.inlong.sort.jdbc.dialect.ClickHouseDialect". It will 
can find custom dialect



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to