1# suite/funcs_1/t/is_engines_innodb.test 2# 3# Check the content of information_schema.engines 4# Variant for storage engine InnoDB 5# 6# Author: 7# 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of 8# testsuite funcs_1 9# 10 11# This test fails for embedded mode bug#11880671 - Myisam is default engine for embedded mode 12# Remove following condition when InnoDB is default engine in embedded mode 13if (`SELECT VERSION() LIKE '%embedded%'`) 14{ 15 --skip Bug#11880671 - Myisam is default engine for embedded mode 16} 17 18 19let $engine_type= InnoDB; 20--source include/have_innodb.inc 21--vertical_results 22eval SELECT * FROM information_schema.engines 23WHERE ENGINE = '$engine_type'; 24