-
Couldn't load subscription status.
- Fork 137
Closed
Labels
Milestone
Description
Description
Steps to reproduce the issue
- 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 ();
- create dtle job
{
"replicate_do_db": [
{
"table_schema": "action_db_1",
"tables": [
{
"table_name": "old"
}
]
}
]
}- rename table name use alter table, ddl rename can not cause this issue
SQL> ALTER TABLE old RENAME TO new;
- check dest MySQL, the table
newis exist. - 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