diff options
author | sasha@mysql.sashanet.com <> | 2001-03-26 21:03:08 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-03-26 21:03:08 -0700 |
commit | 62e6906bfbab202ffa3161b46969e78ec4db8cc5 (patch) | |
tree | 86db6f1e0056dd5735062e20a91924f0afd7f9db /mysql-test/t/rpl000016.test | |
parent | dab74107abc54ba9687b41f4ff2b3e3b45a07c10 (diff) | |
download | mariadb-git-62e6906bfbab202ffa3161b46969e78ec4db8cc5.tar.gz |
worked around gcc bug to make compile-pentium-gcov work
increase coverage for table.cc in mysql_rm_table()
ingore temporary gcov files
fixed bug in replication test case
Diffstat (limited to 'mysql-test/t/rpl000016.test')
-rw-r--r-- | mysql-test/t/rpl000016.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000016.test b/mysql-test/t/rpl000016.test index a12fde7eb4c..be694b0e434 100644 --- a/mysql-test/t/rpl000016.test +++ b/mysql-test/t/rpl000016.test @@ -85,7 +85,11 @@ slave stop; slave start; sync_with_master; show slave status; +# because of concurrent insert, the table may not be up to date +# if we do not lock +lock tables t3 read; select count(*) from t3 where n = 4; +unlock tables; #clean up connection master; drop table if exists t1,t2,t3; |