diff options
author | svoj@mysql.com/april.(none) <> | 2006-09-20 01:40:59 +0500 |
---|---|---|
committer | svoj@mysql.com/april.(none) <> | 2006-09-20 01:40:59 +0500 |
commit | c0ebc0fb2ab02470c9e715386e3dd32db8c33114 (patch) | |
tree | dd33b5bc922fdbbd7b0aba0317f1fa251a8787e2 /mysql-test/r/repair.result | |
parent | 43097593e36c32bc5eac2befb0a9133194feb882 (diff) | |
download | mariadb-git-c0ebc0fb2ab02470c9e715386e3dd32db8c33114.tar.gz |
BUG#10974 - No error message if merge table based on union of innodb, memory
Fixed confusing error message from the storage engine when
it fails to open underlying table. The error message is issued
when a table is _opened_ (not when it is created).
Diffstat (limited to 'mysql-test/r/repair.result')
-rw-r--r-- | mysql-test/r/repair.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/repair.result b/mysql-test/r/repair.result index e0849452399..c069824e9f0 100644 --- a/mysql-test/r/repair.result +++ b/mysql-test/r/repair.result @@ -31,7 +31,7 @@ create table t1 engine=myisam SELECT 1,"table 1"; flush tables; repair table t1; Table Op Msg_type Msg_text -test.t1 repair error Can't open file: 't1.MYI' (errno: 130) +test.t1 repair error Got error 130 from storage engine repair table t1 use_frm; Table Op Msg_type Msg_text test.t1 repair warning Number of rows changed from 0 to 1 |