You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by "gejinxin (via GitHub)" <gi...@apache.org> on 2023/05/23 11:29:23 UTC

[GitHub] [seatunnel] gejinxin commented on issue #4813: [Bug] [seatunnel-connectors-v2] mysql-cdc to clickhouse failed

gejinxin commented on issue #4813:
URL: https://github.com/apache/seatunnel/issues/4813#issuecomment-1559107550

   mysql表结构
   CREATE TABLE test.`test` (
     `id` bigint(20) NOT NULL ,
     `name` VARCHAR(255) NOT NULL COMMENT 'name',
     `desc` VARCHAR(20) DEFAULT NULL COMMENT 'desc',
     `is_manager` bit(1) NOT NULL COMMENT 'true or false',
     `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'create_time',
     `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'update_time',
     PRIMARY KEY (`id`) USING BTREE
   ) ENGINE=InnoDB COMMENT='test';
   
   
   


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org