Skip to content

Commit 87d7630

Browse files
author
Jan Lindström
committed
MDEV-13549: Galera test failures
Fix test failure on galera_toi_dll_fk_insert. DEFAULT value seems to be 3 but test expects it to be 1.
1 parent 2ad51c3 commit 87d7630

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

mysql-test/suite/galera/disabled.def

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
# Do not use any TAB characters for whitespace.
1010
#
1111
##############################################################################
12-
galera_flush : MDEV-13549 Galera test failures
12+
13+
galera_flush : MariaDB does not have global.thread_statistics
1314
galera_account_management : MariaDB 10.0 does not support ALTER USER
14-
galera_binlog_row_image : MariaDB 10.0 does not support binlog_row_image
1515
galera_binlog_rows_query_log_events: MariaDB does not support binlog_rows_query_log_events
16+
galera_migrate : MariaDB does not support START SLAVE USER
1617
GAL-419 : MDEV-13549 Galera test failures
17-
galera_toi_ddl_fk_insert : MDEV-13549 Galera test failures
1818
galera_var_notify_cmd : MDEV-13549 Galera test failures
1919
galera_as_master_gtid : Requires MySQL GTID
2020
galera_as_master_gtid_change_master : Requires MySQL GTID
@@ -26,7 +26,6 @@ galera_gcache_recover_full_gcache : MDEV-13549 Galera test failures
2626
galera_gcache_recover_manytrx : MDEV-13549 Galera test failures
2727
galera_ist_mysqldump : MDEV-13549 Galera test failures
2828
mysql-wsrep#31 : MDEV-13549 Galera test failures
29-
galera_migrate : MariaDB 10.0 does not support START SLAVE USER
3029
galera_wsrep_desync_wsrep_on : MDEV-13549 Galera test failures
3130
galera_ssl_upgrade : MDEV-13549 Galera test failures
3231
mysql-wsrep#33 : MDEV-13549 Galera test failures

mysql-test/suite/galera/r/galera_toi_ddl_fk_insert.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CREATE TABLE child (
99
id INT PRIMARY KEY AUTO_INCREMENT,
1010
parent_id INT
1111
) ENGINE=InnoDB;
12-
INSERT INTO parent VALUES (DEFAULT, 0);
12+
INSERT INTO parent VALUES (1, 0);
1313
INSERT INTO child (parent_id) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4;;
1414
INSERT INTO parent (f2) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4;;
1515
INSERT INTO parent (f2) SELECT 2 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4;;

mysql-test/suite/galera/t/galera_toi_ddl_fk_insert.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ CREATE TABLE child (
2020
parent_id INT
2121
) ENGINE=InnoDB;
2222

23-
INSERT INTO parent VALUES (DEFAULT, 0);
23+
INSERT INTO parent VALUES (1, 0);
2424

2525
--connection node_2
2626
--send INSERT INTO child (parent_id) SELECT 1 FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4;

0 commit comments

Comments
 (0)