Skip to content

Commit

Permalink
MDEV-18180 : Galera test failure on galera.galera_concurrent_ctas
Browse files Browse the repository at this point in the history
Test changes only.
  • Loading branch information
Jan Lindström committed Feb 16, 2020
1 parent 7002948 commit ba3e9d0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
1 change: 0 additions & 1 deletion mysql-test/suite/galera/disabled.def
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ galera_as_slave_replication_bundle : MDEV-15785 OPTION_GTID_BEGIN is set in Gtid
galera_autoinc_sst_mariabackup : Known issue, may require porting MDEV-17458 from later versions
galera_bf_abort_group_commit : MDEV-18282 Galera test failure on galera.galera_bf_abort_group_commit
galera_binlog_stmt_autoinc : MDEV-19959 Galera test failure on galera_binlog_stmt_autoinc
galera_concurrent_ctas : MDEV-18180 Galera test failure on galera.galera_concurrent_ctas
galera_encrypt_tmp_files : Get error failed to enable encryption of temporary files
galera_ftwrl : MDEV-21525 galera.galera_ftwrl
galera_gcache_recover_manytrx : MDEV-18834 Galera test failure
Expand Down
36 changes: 18 additions & 18 deletions mysql-test/suite/galera/t/galera_concurrent_ctas.test
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
--source include/galera_cluster.inc
--source include/have_innodb.inc
--source include/big_test.inc

--write_file $MYSQLTEST_VARDIR/tmp/galera_concurrent.sql
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.1);
DROP table t1;
CREATE table t1 as SELECT SLEEP(0);
CREATE table t2 as SELECT SLEEP(0);
CREATE table t3 as SELECT SLEEP(0);
CREATE table t4 as SELECT SLEEP(0);
CREATE table t5 as SELECT SLEEP(0);
CREATE table t6 as SELECT SLEEP(0);
CREATE table t7 as SELECT SLEEP(0);
CREATE table t8 as SELECT SLEEP(0);
CREATE table t9 as SELECT SLEEP(0);
CREATE table t1 as SELECT SLEEP(0.2);
CREATE table t2 as SELECT SLEEP(0.2);
CREATE table t3 as SELECT SLEEP(0.2);
CREATE table t4 as SELECT SLEEP(0.2);
CREATE table t5 as SELECT SLEEP(0.2);
CREATE table t6 as SELECT SLEEP(0.2);
CREATE table t7 as SELECT SLEEP(0.2);
CREATE table t8 as SELECT SLEEP(0.2);
CREATE table t9 as SELECT SLEEP(0.2);
DROP table t1;
DROP table t2;
DROP table t3;
Expand Down

0 comments on commit ba3e9d0

Please sign in to comment.