github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/incompatible_ddl_changes/conf/dm-task1.yaml (about) 1 --- 2 name: test 3 task-mode: all 4 5 target-database: 6 host: "127.0.0.1" 7 port: 4000 8 user: "root" 9 password: "" 10 11 mysql-instances: 12 - source-id: "mysql-replica-01" 13 black-white-list: "instance" 14 filter-rules: ["filter-01"] 15 16 black-white-list: # compatible with deprecated config 17 instance: 18 do-dbs: ["incompatible_ddl_changes"] 19 20 filters: 21 filter-01: 22 schema-pattern: "*" 23 table-pattern: "*" 24 events: 25 [ 26 "drop database", 27 "drop table", 28 "drop index", 29 "rename table", 30 "truncate table", 31 "drop table partition", 32 "truncate table partition", 33 "value range decrease", 34 "precision decrease", 35 "modify column", 36 "rename column", 37 "rename index", 38 "drop column", 39 "truncate table partition", 40 "drop primary key", 41 "drop unique key", 42 "modify default value", 43 "modify constraint", 44 "modify columns order", 45 "modify charset", 46 "modify collation", 47 "remove auto increment", 48 "modify storage engine", 49 "reorganize table partition", 50 "coalesce table partition", 51 "split table partition", 52 "exchange table partition", 53 "rebuild table partition", 54 ] 55 sql-pattern: [] 56 action: Error