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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]