diff options
author | monty@donna.mysql.com <> | 2001-01-21 16:30:16 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2001-01-21 16:30:16 +0200 |
commit | 62771338ca94eee0dfd23a2d5c2fab0269ff1508 (patch) | |
tree | c772f489364087df96cf8f0582915a11ba82ae54 /mysql-test/t/merge.test | |
parent | efb0dad5a8889ea8f08fb4d9493e221b18a610e1 (diff) | |
download | mariadb-git-62771338ca94eee0dfd23a2d5c2fab0269ff1508.tar.gz |
Changes for --with-server-suffix
Fixed mutex bug in logging (crash on windows when doing SET PASSWORD=)
Changed MERGE tables to not use FILE
Diffstat (limited to 'mysql-test/t/merge.test')
-rw-r--r-- | mysql-test/t/merge.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test index a4b4b5c8178..a3b2c8a11de 100644 --- a/mysql-test/t/merge.test +++ b/mysql-test/t/merge.test @@ -75,5 +75,6 @@ drop table t3,t2,t1; # # Test table without unions # -select * from m; - +create table t1 (a int not null) type=merge; +select * from t1; +drop table t1; |