summaryrefslogtreecommitdiff
path: root/mysql-test/r/innodb_load_xa.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2014-07-27 21:02:00 +0200
committerSergei Golubchik <sergii@pisem.net>2014-07-27 21:02:00 +0200
commita6071cc596fe37ef02e5639042de124f0c11b3b3 (patch)
treeac551d570d7053a9f948d8415c8fe31ee49375d7 /mysql-test/r/innodb_load_xa.result
parent1987819281eba73cac7ff04082f8f9c024b7a54f (diff)
downloadmariadb-git-a6071cc596fe37ef02e5639042de124f0c11b3b3.tar.gz
MDEV-6082 Assertion `0' fails in TC_LOG_DUMMY::log_and_order on DML after installing TokuDB at runtime on server with disabled InnoDB
We don't support changing tc_log implementation at run time. If the first XA-capable engine is loaded with INSTALL PLUGIN - disable its XA capabilities with a warning
Diffstat (limited to 'mysql-test/r/innodb_load_xa.result')
-rw-r--r--mysql-test/r/innodb_load_xa.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/innodb_load_xa.result b/mysql-test/r/innodb_load_xa.result
new file mode 100644
index 00000000000..7ce2fb6c48f
--- /dev/null
+++ b/mysql-test/r/innodb_load_xa.result
@@ -0,0 +1,7 @@
+install plugin innodb soname 'ha_innodb';
+Warnings:
+Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
+select engine,support,transactions,xa from information_schema.engines where engine='innodb';
+engine support transactions xa
+InnoDB YES YES NO
+uninstall plugin innodb;