mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
14 lines
432 B
Plaintext
14 lines
432 B
Plaintext
show create table t1;
|
|
ERROR 42000: Unknown storage engine 'InnoDB'
|
|
call mtr.add_suppression("t1.frm is inconsistent: engine typecode 43, engine name Aria");
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` int(11) DEFAULT NULL,
|
|
`c` int(11) DEFAULT NULL,
|
|
KEY `a` (`a`),
|
|
KEY `b` (`b`)
|
|
) ENGINE=Aria DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci PAGE_CHECKSUM=1
|
|
drop table t1;
|