summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/mysql-wsrep#237.result
diff options
context:
space:
mode:
authorsjaakola <seppo.jaakola@iki.fi>2015-12-23 09:44:32 +0200
committerNirbhay Choubey <nirbhay@mariadb.com>2016-02-23 00:28:16 -0500
commitb633dbdac955c5a9bd3a589fac56763304cff4f9 (patch)
tree0ebf0efa4961f99a5f18ad17725a6717b04e3233 /mysql-test/suite/galera/r/mysql-wsrep#237.result
parent32df0b1aac4ebd8ae7232260500ae4d262ca9915 (diff)
downloadmariadb-git-b633dbdac955c5a9bd3a589fac56763304cff4f9.tar.gz
refs codership/mysql-wsrep#237
- test for FLUSH TABLES hang in slave node
Diffstat (limited to 'mysql-test/suite/galera/r/mysql-wsrep#237.result')
-rw-r--r--mysql-test/suite/galera/r/mysql-wsrep#237.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/r/mysql-wsrep#237.result b/mysql-test/suite/galera/r/mysql-wsrep#237.result
new file mode 100644
index 00000000000..3fd9aed1480
--- /dev/null
+++ b/mysql-test/suite/galera/r/mysql-wsrep#237.result
@@ -0,0 +1,10 @@
+CREATE TABLE t (f1 INTEGER PRIMARY KEY) Engine=InnoDB;
+SET DEBUG_SYNC = 'wsrep_before_replication WAIT_FOR continue';
+INSERT INTO t values (1);;
+SET SESSION wsrep_sync_wait = 0;
+FLUSH TABLES;
+SELECT SLEEP(1);
+SLEEP(1)
+0
+SET DEBUG_SYNC= 'now SIGNAL continue';
+DROP TABLE t;