1 DROP TABLE IF EXISTS t1;
2 create temporary table t1 (a int key) engine=ndb;
3 ERROR HY000: Table storage engine 'ndbcluster' does not support the create option 'TEMPORARY'
4 create temporary table t1 (a int key) engine=myisam;
5 alter table t1 engine=ndb;
6 ERROR HY000: Table storage engine 'ndbcluster' does not support the create option 'TEMPORARY'
8 SET SESSION storage_engine=NDBCLUSTER;
9 create table t1 (a int key);
10 select engine from information_schema.tables where table_name = 't1';
14 create temporary table t1 (a int key);
17 t1 CREATE TEMPORARY TABLE `t1` (
20 ) ENGINE=MyISAM DEFAULT CHARSET=latin1