summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlcheck.result
diff options
context:
space:
mode:
authorunknown <tsmith@ramayana.hindu.god>2008-01-27 14:28:50 -0700
committerunknown <tsmith@ramayana.hindu.god>2008-01-27 14:28:50 -0700
commit32f59206764a448e1adf06e72ed69f7b4a907ce3 (patch)
tree4fe77d4d330fb22fa9ad288d1a2bad7167a22a2d /mysql-test/r/mysqlcheck.result
parent9dbd3877b5eb48b5a252dedbbbc61a722324e782 (diff)
downloadmariadb-git-32f59206764a448e1adf06e72ed69f7b4a907ce3.tar.gz
Fix test case for Bug #25347 so that it actually tests the code fix,
and so that it works correctly on Windows. mysql-test/r/mysqlcheck.result: Flush tables before monkeying around with underlying MyISAM data files mysql-test/t/mysqlcheck.test: Fix the test case for bug #25347 so that it actually does test the behavior. Also, this makes it work on Windows by ensuring that mysqld doesn't hold the underlying MyISAM files open while we try to corrupt them on disk. Flush tables before monkeying around with underlying MyISAM data files; --use-frm, so that mysqlcheck will succeed.
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r--mysql-test/r/mysqlcheck.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result
index 7c72cfeb889..8d7a2d41649 100644
--- a/mysql-test/r/mysqlcheck.result
+++ b/mysql-test/r/mysqlcheck.result
@@ -50,6 +50,7 @@ create database d_bug25347;
use d_bug25347;
create table t_bug25347 (a int);
create view v_bug25347 as select * from t_bug25347;
+flush tables;
removing and creating
d_bug25347.t_bug25347 OK
drop view v_bug25347;