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
@ -26,7 +26,7 @@ uncompressed_length(compress(@test_compress_string))
|
||||
select length(compress(@test_compress_string))<length(@test_compress_string);
|
||||
length(compress(@test_compress_string))<length(@test_compress_string)
|
||||
1
|
||||
create table t1 (a text, b char(255), c char(4)) type=myisam;
|
||||
create table t1 (a text, b char(255), c char(4)) engine=myisam;
|
||||
insert into t1 (a,b,c) values (compress(@test_compress_string),compress(@test_compress_string),'d ');
|
||||
select uncompress(a) from t1;
|
||||
uncompress(a)
|
||||
|
Reference in New Issue
Block a user