From 6189b1bea2fdd76d8cb448f2f567a33a45926166 Mon Sep 17 00:00:00 2001 From: GMHDBJD <35025882+GMHDBJD@users.noreply.github.com> Date: Tue, 10 Oct 2023 22:04:51 +0800 Subject: [PATCH] fix all ddl include incompatibleDDL (#748) --- pkg/binlog-filter/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/binlog-filter/filter.go b/pkg/binlog-filter/filter.go index d4981cd4..d16e98dc 100644 --- a/pkg/binlog-filter/filter.go +++ b/pkg/binlog-filter/filter.go @@ -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 }