mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
13 lines
432 B
Text
13 lines
432 B
Text
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;
|