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

parent
28113396ec
commit
fcf96dbb18
@ -71,7 +71,7 @@ indexed_field
|
||||
NULL
|
||||
NULL
|
||||
DROP TABLE t1;
|
||||
create table t1 (a int, b int) type=myisam;
|
||||
create table t1 (a int, b int) engine=myisam;
|
||||
insert into t1 values(20,null);
|
||||
select t2.b, ifnull(t2.b,"this is null") from t1 as t2 left join t1 as t3 on
|
||||
t2.b=t3.a;
|
||||
|
Reference in New Issue
Block a user