mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
WorkLog#1323
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
This commit is contained in:
parent
28113396ec
commit
fcf96dbb18
@@ -10,7 +10,7 @@ CREATE TABLE t1 (
|
||||
grp int(11) default NULL,
|
||||
a bigint(20) unsigned default NULL,
|
||||
c char(10) NOT NULL default ''
|
||||
) TYPE=MyISAM;
|
||||
) ENGINE=MyISAM;
|
||||
INSERT INTO t1 VALUES (1,1,'a'),(2,2,'b'),(2,3,'c'),(3,4,'E'),(3,5,'C'),(3,6,'D'),(NULL,NULL,'');
|
||||
create table t2 (id int, a bigint unsigned not null, c char(10), d int, primary key (a));
|
||||
insert into t2 values (1,1,"a",1),(3,4,"A",4),(3,5,"B",5),(3,6,"C",6),(4,7,"D",7);
|
||||
|
||||
Reference in New Issue
Block a user