diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-03-26 21:03:08 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-03-26 21:03:08 -0700 |
commit | 33ec68e127d515bc98be3ba0d9f88ec0d4e2b5f3 (patch) | |
tree | 86db6f1e0056dd5735062e20a91924f0afd7f9db /mysql-test/t/flush.test | |
parent | 219682ef86a240014dce8649a15380b390863f30 (diff) | |
download | mariadb-git-33ec68e127d515bc98be3ba0d9f88ec0d4e2b5f3.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
BitKeeper/etc/ignore:
added *.da
BUILD/compile-pentium-gcov:
do not build shared libraries - combination of -fPIC and the coverage flags
triggers a bug in gcc, apparently - problem went away after adding
--disable-shared
mysql-test/t/flush.test:
extra test to increase coverage of table.cc
mysql-test/t/rpl000016.test:
fixed bug in test case - insert may be concurrent, so we may read the
table on the slave before the last insert becomes visible even when the
master position is up to date if we do not
lock it explicitly
Diffstat (limited to 'mysql-test/t/flush.test')
-rw-r--r-- | mysql-test/t/flush.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/flush.test b/mysql-test/t/flush.test index 773becfeba1..94586519c66 100644 --- a/mysql-test/t/flush.test +++ b/mysql-test/t/flush.test @@ -22,4 +22,13 @@ while ($1) connection con1; select * from t1; +connection con2; +flush tables with read lock; +--error 1099; drop table t2; +connection con1; +send drop table t2; +connection con2; +unlock tables; +connection con1; +reap; |