1 create table t1 (id int) engine=NDB;
3 Warning 1286 Unknown table engine 'NDB'
4 Warning 1266 Using storage engine MyISAM for table 't1'
5 alter table t1 engine=NDB;
7 Warning 1286 Unknown table engine 'NDB'
9 SELECT ENGINE, SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='ndbcluster';
12 SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE
13 PLUGIN_NAME='ndbcluster';
14 PLUGIN_NAME PLUGIN_STATUS