diff options
author | jimw@mysql.com <> | 2005-01-08 07:31:13 +0100 |
---|---|---|
committer | jimw@mysql.com <> | 2005-01-08 07:31:13 +0100 |
commit | 5c497ef3a85c1b0ae3d6155656c6446aeb5b77a3 (patch) | |
tree | 7f55e20f0d208559f97dd4e14dca6b66d09390cd /mysql-test/t | |
parent | c2eb3bf9f645b2eb42002d74426ed0311b61f612 (diff) | |
download | mariadb-git-5c497ef3a85c1b0ae3d6155656c6446aeb5b77a3.tar.gz |
Use 'USING <indextype>' in results of SHOW CREATE TABLE, it's the preferred
syntax. (Bug #7233)
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/show_check.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index 7788215dd27..3bbfe862361 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -210,7 +210,7 @@ select @@max_heap_table_size; CREATE TABLE t1 ( a int(11) default NULL, - KEY a TYPE BTREE (a) + KEY a USING BTREE (a) ) ENGINE=HEAP; CREATE TABLE t2 ( @@ -221,7 +221,7 @@ CREATE TABLE t2 ( CREATE TABLE t3 ( a int(11) default NULL, b int(11) default NULL, - KEY a TYPE BTREE (a), + KEY a USING BTREE (a), index(b) ) ENGINE=HEAP; |