I am trying to create a disk table
CREATE TABLE table1_disk
(col0 INT(11) NOT NULL AUTO_INCREMENT,
col1 VARCHAR(20) DEFAULT NULL,
PRIMARY KEY (col0))
ENGINE=ndbcluster DEFAULT CHARSET=latin1
TABLESPACE ts_1 STORAGE DISK;
Error: Table storage engine 'NDBCLUSTER' found required create option missing.
I have specified ENGINE type. If I remove STORAGE type the table is created.