summaryrefslogtreecommitdiff
path: root/mysql-test/r/bootstrap.result
diff options
context:
space:
mode:
authorGeorgi Kodinov <Georgi.Kodinov@Oracle.com>2011-03-23 19:03:42 +0200
committerGeorgi Kodinov <Georgi.Kodinov@Oracle.com>2011-03-23 19:03:42 +0200
commit54461b0699c202abd720970493002125d4f821fd (patch)
treeff699bb747b986281d05d3640c47cd8a416a7006 /mysql-test/r/bootstrap.result
parent17dbffaf793f3df1daa538c6946d2d741f3f5ad7 (diff)
downloadmariadb-git-54461b0699c202abd720970493002125d4f821fd.tar.gz
Bug #11766306: 59393: have_innodb=yes when mysqld started with --skip-innodb
Initialized correctly the have_innodb variable so that when the plugin is not initialized it stays "disabled" instead of "yes". Test suite added.
Diffstat (limited to 'mysql-test/r/bootstrap.result')
-rw-r--r--mysql-test/r/bootstrap.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/bootstrap.result b/mysql-test/r/bootstrap.result
index 3301ca74324..484724373d2 100644
--- a/mysql-test/r/bootstrap.result
+++ b/mysql-test/r/bootstrap.result
@@ -6,3 +6,15 @@ set @my_max_allowed_packet= @@max_allowed_packet;
set global max_allowed_packet=100*@@max_allowed_packet;
set global max_allowed_packet=@my_max_allowed_packet;
drop table t1;
+End of 5.1 tests
+#
+# Bug #11766306: 59393: HAVE_INNODB=YES WHEN MYSQLD
+# STARTED WITH --SKIP-INNODB
+#
+SHOW VARIABLES LIKE 'have_innodb';
+Variable_name Value
+have_innodb DISABLED
+SELECT SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE engine='innodb';
+SUPPORT
+NO
+End of 5.5 tests