You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2022/08/24 02:19:02 UTC

[GitHub] [rocketmq-connect] Oliverwqcwrw commented on issue #268: JdbcSourceTask start failed

Oliverwqcwrw commented on issue #268:
URL: https://github.com/apache/rocketmq-connect/issues/268#issuecomment-1225094472

   Thanks for your reply @sunxiaojian 
   My table structure:
   
   > 
           -- auto-generated definition
       create table config_info
       (
           id           bigint auto_increment comment 'id'
               primary key,
           data_id      varchar(255)                           not null comment 'data_id',
           group_id     varchar(255)                           null,
           content      longtext                               not null comment 'content',
           md5          varchar(32)                            null comment 'md5',
           gmt_create   datetime     default CURRENT_TIMESTAMP not null comment '创建时间',
           gmt_modified datetime     default CURRENT_TIMESTAMP not null comment '修改时间',
           src_user     text                                   null comment 'source user',
           src_ip       varchar(50)                            null comment 'source ip',
           app_name     varchar(128)                           null,
           tenant_id    varchar(128) default ''                null comment '租户字段',
           c_desc       varchar(256)                           null,
           c_use        varchar(64)                            null,
           effect       varchar(64)                            null,
           type         varchar(64)                            null,
           c_schema     text                                   null,
           constraint uk_configinfo_datagrouptenant
               unique (data_id, group_id, tenant_id)
       )
           comment 'config_info' collate = utf8_bin;
   
   


-- 
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: dev-unsubscribe@rocketmq.apache.org

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