mirror of
https://github.com/MariaDB/server.git
synced 2026-02-12 13:48:43 +01:00
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>
12 lines
263 B
Text
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;
|