diff options
author | svoj@april.(none) <> | 2007-03-31 17:29:40 +0500 |
---|---|---|
committer | svoj@april.(none) <> | 2007-03-31 17:29:40 +0500 |
commit | 51710387ab6f744f829a51fef693ce8a5bbaefff (patch) | |
tree | f360ebbf99cea87831c4fa0f78d5b922ccc42f28 /mysql-test/r/archive.result | |
parent | b8e0d3490e30079c60f0df4255ec9061735011c0 (diff) | |
parent | f297b5d873f3368022b173264087ebef98e0b2ce (diff) | |
download | mariadb-git-51710387ab6f744f829a51fef693ce8a5bbaefff.tar.gz |
Merge mysql.com:/home/svoj/devel/bk/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG26138/mysql-5.1-engines
Diffstat (limited to 'mysql-test/r/archive.result')
-rw-r--r-- | mysql-test/r/archive.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/archive.result b/mysql-test/r/archive.result index 6ba8191e2c3..f90577813f4 100644 --- a/mysql-test/r/archive.result +++ b/mysql-test/r/archive.result @@ -12666,3 +12666,13 @@ t6 CREATE TABLE `t6` ( KEY `a` (`a`) ) ENGINE=ARCHIVE DEFAULT CHARSET=latin1 DROP TABLE t1, t2, t4, t5, t6; +drop table t1, t2, t4; +create table t1 (i int) engine=archive; +insert into t1 values (1); +repair table t1 use_frm; +Table Op Msg_type Msg_text +test.t1 repair status OK +select * from t1; +i +1 +drop table t1; |