diff options
author | unknown <svoj@mysql.com/june.mysql.com> | 2007-06-28 14:04:20 +0500 |
---|---|---|
committer | unknown <svoj@mysql.com/june.mysql.com> | 2007-06-28 14:04:20 +0500 |
commit | c69012d3e71a9bbf13228ae491f7ac27690f7bf8 (patch) | |
tree | 3a37ffa513604830125560cb5ca3f47a262b47bb /mysql-test/r/archive.result | |
parent | 8671dbd47394acfcbc34fb7b878b775e4e6ee358 (diff) | |
download | mariadb-git-c69012d3e71a9bbf13228ae491f7ac27690f7bf8.tar.gz |
BUG#29207 - archive table reported as corrupt by check table
After merge fix.
mysql-test/r/archive.result:
After merge fix.
Diffstat (limited to 'mysql-test/r/archive.result')
-rw-r--r-- | mysql-test/r/archive.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/archive.result b/mysql-test/r/archive.result index 59462e848d2..36b013703d8 100644 --- a/mysql-test/r/archive.result +++ b/mysql-test/r/archive.result @@ -12675,3 +12675,10 @@ select * from t1; i 1 drop table t1; +create table t1(a longblob) engine=archive; +insert into t1 set a=''; +insert into t1 set a='a'; +check table t1 extended; +Table Op Msg_type Msg_text +test.t1 check status OK +drop table t1; |