diff options
author | unknown <serg@serg.mysql.com> | 2002-09-01 18:17:33 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-09-01 18:17:33 +0000 |
commit | 9af502edd2439e5fb9e77fd99e88d74990c67a52 (patch) | |
tree | 221c0a8213fe5d0ecd608b305c39454ada823af3 /mysql-test/t/repair.test | |
parent | b12cc1ab205b8421eae9f608f09dce165f75bbb5 (diff) | |
download | mariadb-git-9af502edd2439e5fb9e77fd99e88d74990c67a52.tar.gz |
protected close_cached_table() call in REPAIR ... USE_FRM with a mutex
test for REPAIR ... USE_FRM added
sql/sql_table.cc:
protected close_cached_table() call in REPAIR ... USE_FRM with a mutex
Diffstat (limited to 'mysql-test/t/repair.test')
-rw-r--r-- | mysql-test/t/repair.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/repair.test b/mysql-test/t/repair.test new file mode 100644 index 00000000000..6d79014b23d --- /dev/null +++ b/mysql-test/t/repair.test @@ -0,0 +1,8 @@ +# +# Test of repair table +# + +drop table if exists t1; +create table t1 SELECT 1,"table 1"; +repair table t1 use_frm; +drop table if exists t1; |