6
--require r/true.require
7
select support = 'Disabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
6
# Drizzle currently doesn't have a way to query if an engine is disabled
7
#--require r/true.require
8
#select support = 'Disabled' as `TRUE` from information_schema.engines where engine = 'myisam';
12
# Test for handler type, will select MyISAM and print a warning
13
# about that - since NDB is disabled
15
create table t1 (id int) engine=NDB;
16
alter table t1 engine=NDB;
13
# Drizzle bug 309847 - change warning to error when selected engine is disabled
15
# Test for handler type, will select default storage engine and issue an error
16
# since NDB is disabled
18
# remove this line after bug 309847 is fixed
19
create table t1 (id int) engine=innodb;
21
# uncomment after bug 309847 is fixed
22
#create table t1 (id int) engine=NDB;
23
#alter table t1 engine=NDB;