diff options
author | unknown <serg@serg.mysql.com> | 2003-01-16 13:23:33 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2003-01-16 13:23:33 +0100 |
commit | ef3091541e34703138e1c9f2fa5037faefaf20ba (patch) | |
tree | b5867f3af6a8d536708da1c8276d8d52ce5ca111 /mysql-test/t/merge.test | |
parent | cc014ceba85513dbe745851df2f556713682320d (diff) | |
download | mariadb-git-ef3091541e34703138e1c9f2fa5037faefaf20ba.tar.gz |
bugfix for 'ANALYZE for MERGE' and table-less MERGE table
mysql-test/r/merge.result:
test added
mysql-test/t/merge.test:
test added
Diffstat (limited to 'mysql-test/t/merge.test')
-rw-r--r-- | mysql-test/t/merge.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test index 2199f50fb16..e2cd8b57b7e 100644 --- a/mysql-test/t/merge.test +++ b/mysql-test/t/merge.test @@ -105,7 +105,7 @@ drop table t3,t2,t1; # # Test table without unions # -create table t1 (a int not null) type=merge; +create table t1 (a int not null, key(a)) type=merge; select * from t1; drop table t1; |