B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
mysql-test
/
r
/
Filename :
import_schema_mismatch.result
back
Copy
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB ROW_FORMAT=COMPACT; FLUSH TABLES t1 FOR EXPORT; UNLOCK TABLES; DROP TABLE t1; SET GLOBAL innodb_file_format=`Barracuda`; SET GLOBAL innodb_file_per_table= ON; CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB ROW_FORMAT=DYNAMIC; ALTER TABLE t1 DISCARD TABLESPACE; ALTER TABLE t1 IMPORT TABLESPACE; ERROR HY000: Schema mismatch (Table flags don't match,server table has ROW_TYPE_DYNAMIC and the meta-data file has ROW_TYPE_COMPACT) DROP TABLE t1; SET GLOBAL innodb_file_format=`Antelope`;