mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
WorkLog#1323
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
This commit is contained in:

parent
28113396ec
commit
fcf96dbb18
@ -8,7 +8,7 @@ CREATE TABLE `t1` (
|
||||
`email` varchar(60) character set latin2 NOT NULL default '',
|
||||
PRIMARY KEY (a),
|
||||
UNIQUE KEY `email` USING BTREE (`email`)
|
||||
) TYPE=HEAP CHARSET=latin1 ROW_FORMAT DYNAMIC;
|
||||
) ENGINE=HEAP CHARSET=latin1 ROW_FORMAT DYNAMIC;
|
||||
set @@sql_mode="";
|
||||
show variables like 'sql_mode';
|
||||
show create table t1;
|
||||
|
Reference in New Issue
Block a user