mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / r / warnings_engine_disabled.result
blobe5d35fdaa5fdd0360c03692c2b1eca184fc67c0a
1 create table t1 (id int) engine=NDB;
2 Warnings:
3 Warning 1286    Unknown table engine 'NDB'
4 Warning 1266    Using storage engine MyISAM for table 't1'
5 alter table t1 engine=NDB;
6 Warnings:
7 Warning 1286    Unknown table engine 'NDB'
8 drop table t1;
9 SELECT ENGINE, SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='ndbcluster';
10 ENGINE  SUPPORT
11 ndbcluster      NO
12 SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE
13 PLUGIN_NAME='ndbcluster';
14 PLUGIN_NAME     PLUGIN_STATUS
15 ndbcluster      DISABLED