diff options
author | unknown <serg@sergbook.mysql.com> | 2006-05-08 16:06:16 -0400 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2006-05-08 16:06:16 -0400 |
commit | 335cf16a525798179969d3ca7886ba6e7b7473a6 (patch) | |
tree | cd6708a1a79336db4d6cd1b8d6d2d2d09847a4fb /mysql-test/r/myisam.result | |
parent | 1211c28a08103cb044f5c504b88db733c53d7120 (diff) | |
download | mariadb-git-335cf16a525798179969d3ca7886ba6e7b7473a6.tar.gz |
don't introduce a deprecated syntax
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 8976c98136b..3226351f966 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1421,15 +1421,6 @@ create table t3 (c1 int) engine=myisam pack_keys=default; create table t4 (c1 int) engine=myisam pack_keys=2; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1 drop table t1, t2, t3; -create table t1 (a int not null, key `a` key_block_size=1024 (a)); -show create table t1; -Table Create Table -t1 CREATE TABLE `t1` ( - `a` int(11) NOT NULL, - KEY `a` KEY_BLOCK_SIZE=1024 (`a`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 -drop table t1; -set @@new=1; create table t1 (a int not null, key `a` (a) key_block_size=1024); show create table t1; Table Create Table @@ -1574,4 +1565,5 @@ t1 CREATE TABLE `t1` ( drop table t1; create table t1 (a int not null, key key_block_size=1024 (a)); ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '=1024 (a))' at line 1 -set @@new=0; +create table t1 (a int not null, key `a` key_block_size=1024 (a)); +ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key_block_size=1024 (a))' at line 1 |