include/master-slave.inc [connection master] *** MDEV-35233: RBR does not work with CSV tables CREATE TABLE t (a INT NOT NULL) ENGINE=CSV; INSERT INTO t VALUES (1),(2); DELETE FROM t where a=1; connection slave; SELECT * FROM t ORDER BY a; a 2 connection master; DROP TABLE t; include/rpl_end.inc