修复parseRowsEvent方法中没有dml过滤的判断而导致dml操作的数据总是会输出到store中的bug
@@ -305,6 +305,9 @@ public class LogEventConvert extends AbstractCanalLifeCycle implements BinlogPar
}
private Entry parseRowsEvent(RowsLogEvent event) {
+ if (filterQueryDml) {
+ return null;
+ }
try {
TableMapLogEvent table = event.getTable();
if (table == null) {