LiJie20190102 commented on issue #9199:
URL: https://github.com/apache/inlong/issues/9199#issuecomment-1794486502

   Functionally functional, the complete file is as follows:
                        
   CREATE TABLE `table_11`(
       `id` bigint,
        PRIMARY KEY(id) NOT ENFORCED
        )
       WITH (
       'connector' = 'mysql-cdc-inlong',
       'hostname' = '192.168.1.133',
       'database-name' = 'inlong_test',
       'port' = '13306',
       'username' = 'root',
       'password' = 'qsdi1@3',
       'table-name' = 'inlong_test.source1'
   );
   
   CREATE TABLE `table_22`(
       PRIMARY KEY (`id`) NOT ENFORCED,
       `id` bigint)
       WITH (
   'connector' = 'jdbc-inlong',
       'url' = 'jdbc:mysql://192.168.1.133:13306/inlong_test',
       'username' = 'root',
       'password' = 'qsdi1@3',
       'table-name' = 'target1'
   );
   
   INSERT INTO `table_22`
       SELECT
       `id` AS `id`
       FROM `table_11`;
        
        


-- 
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]

Reply via email to