silenceland commented on issue #2617: URL: https://github.com/apache/incubator-seatunnel/issues/2617#issuecomment-1510525909
My Config like this: image: oceanbase/oceanbase-ce driver-class: com.mysql.cj.jdbc.Driver driver_jar: https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.16/mysql-connector-java-8.0.16.jar my create table sql: source: CREATE TABLE `seatunnel`.`e2e_ob_source` ( col1 INT PRIMARY KEY COMMENT '第一列', col2 integer DEFAULT NULL COMMENT '第二列', col3 decimal(10,2) DEFAULT NULL COMMENT '第三列', col4 number DEFAULT NULL COMMENT '第四列', col5 tinyint(4) DEFAULT NULL COMMENT '第五列', col6 smallint(6) DEFAULT NULL COMMENT '第六列', col7 mediumint(9) DEFAULT NULL COMMENT '第七列', col8 bigint(20) DEFAULT NULL COMMENT '第八列', col9 float(10,2) DEFAULT NULL COMMENT '第九列', col10 double(10,2) DEFAULT NULL COMMENT '第十列', col11 varchar(10) DEFAULT NULL COMMENT '第十一列', col12 char(10) NOT NULL DEFAULT '中文字段' COMMENT '第十二列', col13 text DEFAULT NULL COMMENT '第十三列', col14 tinytext DEFAULT NULL COMMENT '第十四列', col15 mediumtext DEFAULT NULL COMMENT '第十五列', col16 longtext DEFAULT NULL COMMENT '第十六列', col17 blob DEFAULT NULL COMMENT '第十七列', col18 tinyblob DEFAULT NULL COMMENT '第十八列', col19 longblob DEFAULT NULL COMMENT '第十九列', col20 mediumblob DEFAULT NULL COMMENT '第二十列', col21 binary(16) DEFAULT NULL COMMENT '第二十一列', col22 varbinary(16) DEFAULT NULL COMMENT '第二十二列', col23 timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '第二十三列', col24 time DEFAULT NULL COMMENT '第二十四列', col25 date DEFAULT NULL COMMENT '第二十五列', col26 datetime DEFAULT NULL COMMENT '第二十六列', col27 year(4) DEFAULT NULL COMMENT '第二十七列' ) sink: CREATE TABLE `seatunnel`.`e2e_ob_sink` ( col1 INT PRIMARY KEY COMMENT '第一列', col2 integer DEFAULT NULL COMMENT '第二列', col3 decimal(10,2) DEFAULT NULL COMMENT '第三列', col4 number DEFAULT NULL COMMENT '第四列', col5 tinyint(4) DEFAULT NULL COMMENT '第五列', col6 smallint(6) DEFAULT NULL COMMENT '第六列', col7 mediumint(9) DEFAULT NULL COMMENT '第七列', col8 bigint(20) DEFAULT NULL COMMENT '第八列', col9 float(10,2) DEFAULT NULL COMMENT '第九列', col10 double(10,2) DEFAULT NULL COMMENT '第十列', col11 varchar(10) DEFAULT NULL COMMENT '第十一列', col12 char(10) NOT NULL DEFAULT '中文字段' COMMENT '第十二列', col13 text DEFAULT NULL COMMENT '第十三列', col14 tinytext DEFAULT NULL COMMENT '第十四列', col15 mediumtext DEFAULT NULL COMMENT '第十五列', col16 longtext DEFAULT NULL COMMENT '第十六列', col17 blob DEFAULT NULL COMMENT '第十七列', col18 tinyblob DEFAULT NULL COMMENT '第十八列', col19 longblob DEFAULT NULL COMMENT '第十九列', col20 mediumblob DEFAULT NULL COMMENT '第二十列', col21 binary(16) DEFAULT NULL COMMENT '第二十一列', col22 varbinary(16) DEFAULT NULL COMMENT '第二十二列', col23 timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '第二十三列', col24 time DEFAULT NULL COMMENT '第二十四列', col25 date DEFAULT NULL COMMENT '第二十五列', col26 datetime DEFAULT NULL COMMENT '第二十六列', col27 year(4) DEFAULT NULL COMMENT '第二十七列' ) -- 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]
