mariadb/mysql-test/suite/binlog_in_engine/mariabackup_binlog_dir.result
Kristian Nielsen 3b7cb94102 Binlog-in-engine: Fix test failure in binlog_in_engine.mariabackup_binlog_dir
Remove the --innodb-undo-directory=undos command-line argument from the
test, as it causes failures when the test suite is run from distro package
and the test directory is not writeable, and it's not relevant for what is
being tested in that test case.

Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
2026-01-17 14:05:19 +01:00

12 lines
263 B
Text

include/reset_master.inc
#
# MDEV-38432: Issues with mariabackup's binlog-directory option
#
create table t (a int) engine=InnoDB;
flush binary logs;
insert into t values (1);
flush binary logs;
binlog-000000.ibb
binlog-000001.ibb
binlog-000002.ibb
drop table t;