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/t/myisam.test | |
parent | 1211c28a08103cb044f5c504b88db733c53d7120 (diff) | |
download | mariadb-git-335cf16a525798179969d3ca7886ba6e7b7473a6.tar.gz |
don't introduce a deprecated syntax
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r-- | mysql-test/t/myisam.test | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test index 87a00399c23..a77537f3ff5 100644 --- a/mysql-test/t/myisam.test +++ b/mysql-test/t/myisam.test @@ -811,13 +811,6 @@ drop table t1, t2, t3; # Test of key_block_size # -# Old format, to be obsolete in 5.3 -create table t1 (a int not null, key `a` key_block_size=1024 (a)); -show create table t1; -drop table t1; - -set @@new=1; - create table t1 (a int not null, key `a` (a) key_block_size=1024); show create table t1; drop table t1; @@ -874,5 +867,6 @@ drop table t1; --error 1064 create table t1 (a int not null, key key_block_size=1024 (a)); +--error 1064 +create table t1 (a int not null, key `a` key_block_size=1024 (a)); -set @@new=0; |