diff options
author | unknown <serg@serg.mylan> | 2004-08-20 22:54:42 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-08-20 22:54:42 +0200 |
commit | 0745a2b783becf4b3ecb095cf8e43f67e333ba90 (patch) | |
tree | e8510e5d3f6b221a69a2c61f979f3786df718f3a /mysql-test/t/flush_block_commit.test | |
parent | 5f74f8d5faf57740cdd43c03a9d5a8d58a357e45 (diff) | |
download | mariadb-git-0745a2b783becf4b3ecb095cf8e43f67e333ba90.tar.gz |
after merge fix
myisam/Makefile.am:
put zlib at the end (libtool adds the whole bunch of dependencies right after that)
sql/Makefile.am:
put zlib at the end (libtool adds the whole bunch of dependencies right after that)
Diffstat (limited to 'mysql-test/t/flush_block_commit.test')
-rw-r--r-- | mysql-test/t/flush_block_commit.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/t/flush_block_commit.test b/mysql-test/t/flush_block_commit.test index 20ecec1361c..3d13086f517 100644 --- a/mysql-test/t/flush_block_commit.test +++ b/mysql-test/t/flush_block_commit.test @@ -8,8 +8,11 @@ connect (con1,localhost,root,,); connect (con2,localhost,root,,); connect (con3,localhost,root,,); connection con1; + +--disable_warnings drop table if exists t1; -create table t1 (a int) type=innodb; +--enable_warnings +create table t1 (a int) engine=innodb; # blocks COMMIT ? |