mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / ndb / r / ndb_temporary.result
blob7b7740003af06c4ea66e16093490216fbfe6142f
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'
7 drop table t1;
8 SET SESSION storage_engine=NDBCLUSTER;
9 create table t1 (a int key);
10 select engine from information_schema.tables where table_name = 't1';
11 engine
12 ndbcluster
13 drop table t1;
14 create temporary table t1 (a int key);
15 show create table t1;
16 Table   Create Table
17 t1      CREATE TEMPORARY TABLE `t1` (
18   `a` int(11) NOT NULL,
19   PRIMARY KEY (`a`)
20 ) ENGINE=MyISAM DEFAULT CHARSET=latin1
21 drop table t1;