diff --git a/pkg/binlog-filter/filter.go b/pkg/binlog-filter/filter.go index 567bd6d6..ee7eaff1 100644 --- a/pkg/binlog-filter/filter.go +++ b/pkg/binlog-filter/filter.go @@ -169,7 +169,22 @@ func ClassifyEvent(event EventType) (EventType, error) { TruncateTable, DropSchema, DropTablePartition, - TruncateTablePartition: + TruncateTablePartition, + + ModifySchemaCharsetAndCollate, + ModifyTableCharsetAndCollate, + ModifyTableComment, + RecoverTable, + AlterTablePartitioning, + RemovePartitioning, + AddColumn, + SetDefaultValue, + RebaseAutoID, + AddPrimaryKey, + AlterIndexVisibility, + AlterTTLInfo, + AlterTTLRemove, + MultiSchemaChange: return incompatibleDDL, nil default: return NullEvent, errors.NotValidf("event type %s", event)