1drop table if exists t1;
2# Kill the server
3# restart
4drop table t1;
5# Kill the server
6# restart
7drop table t1;
8ERROR 42S02: Unknown table 'test.t1'
9# Kill the server
10# restart
11drop table t1;
12End of 5.1 tests
13#
14# Bug #11766306: 59393: HAVE_INNODB=YES WHEN MYSQLD
15#  STARTED WITH --SKIP-INNODB
16#
17SELECT 'bug' as '' FROM INFORMATION_SCHEMA.ENGINES WHERE engine='innodb'
18 and SUPPORT='YES';
19
20# Kill the server
21# restart
22End of 5.5 tests
23# Kill the server
24# restart
25flush tables;
26show create table t1;
27Table	Create Table
28t1	CREATE TABLE `t1` (
29  `a` int(11) DEFAULT NULL
30) ENGINE=MyISAM DEFAULT CHARSET=latin1
31drop table t1;
32select * from mysql.plugin;
33name	dl
34EXAMPLE	ha_example.so
35truncate table mysql.plugin;
36# Kill the server
37# restart
38