summaryrefslogtreecommitdiff
path: root/mysql-test/r/repair_symlink-5543.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/repair_symlink-5543.result')
-rw-r--r--mysql-test/r/repair_symlink-5543.result9
1 files changed, 6 insertions, 3 deletions
diff --git a/mysql-test/r/repair_symlink-5543.result b/mysql-test/r/repair_symlink-5543.result
index 98ded32686e..e827c7b7f73 100644
--- a/mysql-test/r/repair_symlink-5543.result
+++ b/mysql-test/r/repair_symlink-5543.result
@@ -2,12 +2,15 @@ create table t1 (a int) engine=myisam data directory='MYSQL_TMP_DIR';
insert t1 values (1);
repair table t1;
Table Op Msg_type Msg_text
-test.t1 repair status OK
+test.t1 repair error 40 for record at pos 0
+test.t1 repair Error File 'MYSQL_TMP_DIR/t1.MYD' not found (Errcode: 40 "Too many levels of symbolic links")
+test.t1 repair status Operation failed
drop table t1;
create table t2 (a int) engine=aria data directory='MYSQL_TMP_DIR';
insert t2 values (1);
repair table t2;
Table Op Msg_type Msg_text
-test.t2 repair status OK
+test.t2 repair error 40 for record at pos 256
+test.t2 repair Error File 'MYSQL_TMP_DIR/t2.MAD' not found (Errcode: 40 "Too many levels of symbolic links")
+test.t2 repair status Operation failed
drop table t2;
-foobar5543