summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/wsrep/t/trans.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/wsrep/t/trans.test')
-rw-r--r--mysql-test/suite/wsrep/t/trans.test14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/suite/wsrep/t/trans.test b/mysql-test/suite/wsrep/t/trans.test
new file mode 100644
index 00000000..d8c4a472
--- /dev/null
+++ b/mysql-test/suite/wsrep/t/trans.test
@@ -0,0 +1,14 @@
+--source include/have_wsrep.inc
+--source include/have_innodb.inc
+
+--echo #
+--echo # MDEV-4222 : Assertion `( ((global_system_variables.wsrep_on) &&
+--echo # (thd && thd->variables.wsrep_on)) && srep_emulate_bin_log)
+--echo # || mysql_bin_log .is_open()' fails on SAVEPOINT with
+--echo # disabled wsrep_provider
+--echo #
+
+START TRANSACTION WITH CONSISTENT SNAPSHOT;
+SAVEPOINT A;
+
+--echo End of test.