<!-- Before reporting an issue, make a search and ensure there is no similar existing issue. If there is one, you can comment there. The GitHub issue tracker is for bug reports and feature requests. **Do not ask for usage or error solution here.** General support for **Dtle** can be found at: - Dtle Support QQ Group: 852990221 --> ## Description <!-- Briefly describe the problem in a few paragraphs. --> ## Steps to reproduce the issue 1. source MySQL prepare data ``` SQL> CREATE TABLE old (id INT(11) AUTO_INCREMENT PRIMARY KEY); SQL> INSERT old VALUES (); SQL> INSERT old VALUES (); SQL> INSERT old VALUES (); ``` 2. create dtle job ```json { "replicate_do_db": [ { "table_schema": "action_db_1", "tables": [ { "table_name": "old" } ] } ] } ``` 3. rename table name use alter table, **ddl rename can not cause this issue** ``` SQL> ALTER TABLE old RENAME TO new; ``` 4. check dest MySQL, the table `new` is exist. 5. insert data to src MySQL table `new` ## Describe the results you received the data copy to dest MySQL table `new` ## Describe the results you expected the data should not copy to dest MySQL table `new` ## Output of `./dtle version`:** ``` 9.9.9.9-master-9b55df4 ```