1
by brian
clean slate |
1 |
#
|
2 |
# Only run this test with a compiled in but disabled
|
|
3 |
# engine
|
|
4 |
#
|
|
5 |
disable_query_log; |
|
6 |
--require r/true.require |
|
7 |
select support = 'Disabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster'; |
|
8 |
enable_query_log; |
|
9 |
||
10 |
||
11 |
#
|
|
12 |
# Test for handler type, will select MyISAM and print a warning
|
|
13 |
# about that - since NDB is disabled
|
|
14 |
#
|
|
15 |
create table t1 (id int) engine=NDB; |
|
16 |
alter table t1 engine=NDB; |
|
17 |
drop table t1; |
|
18 |
||
19 |