laizuan commented on issue #330:
URL:
https://github.com/apache/doris-flink-connector/issues/330#issuecomment-1991436864
> @laizuan can you provide the ddl of mysql source table?
@vinlee19 DDL after desensitization
```sql
CREATE TABLE `x`.`xxx` (
`id` bigint NOT NULL COMMENT '主键',
`xxx` bit(1) NOT NULL COMMENT 'xxx',
......other fields
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci
ROW_FORMAT = Dynamic;
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]