25 lines
952 B
Plaintext
25 lines
952 B
Plaintext
create temporary table t1 (a int key) engine=ndb;
|
|
ERROR HY000: Table storage engine 'ndbcluster' does not support the create option 'TEMPORARY'
|
|
create temporary table t1 (a int key) engine=myisam;
|
|
alter table t1 engine=ndb;
|
|
ERROR HY000: Table storage engine 'ndbcluster' does not support the create option 'TEMPORARY'
|
|
drop table t1;
|
|
CREATE TABLE bar ( id TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY ) ENGINE=NDBCluster ;
|
|
CREATE TEMPORARY TABLE foo LIKE bar ;
|
|
ERROR HY000: Cannot create temporary table with partitions
|
|
DROP TABLE bar;
|
|
SET SESSION default_storage_engine=NDBCLUSTER;
|
|
create table t1 (a int key);
|
|
select engine from information_schema.tables where table_name = 't1';
|
|
ENGINE
|
|
ndbcluster
|
|
drop table t1;
|
|
create temporary table t1 (a int key);
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TEMPORARY TABLE `t1` (
|
|
`a` int(11) NOT NULL,
|
|
PRIMARY KEY (`a`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
|
|
drop table t1;
|