Skip to content

Commit

Permalink
fix all ddl include incompatibleDDL (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMHDBJD authored Oct 10, 2023
1 parent a8b57a3 commit 6189b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/binlog-filter/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ func (b *BinlogEvent) matchEvent(tp, event EventType, rules []EventType) bool {
return false
}

if tp == ddl {
if tp == ddl || tp == incompatibleDDL {
if rule == AllDDL {
return true
}
Expand Down

0 comments on commit 6189b1b

Please sign in to comment.