File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
eval create table t1 (a int) engine=myisam data directory='$MYSQL_TMP_DIR';
10
10
insert t1 values (1);
11
11
--system ln -s $MYSQL_TMP_DIR/foobar5543 $MYSQL_TMP_DIR/t1.TMD
12
- --echo # Some systems fail with errcode 40, when doing openat, while others
13
- --echo # don't have openat and fail with errcode 20.
14
- --replace_regex / '.*\/t1/ 'MYSQL_TMP_DIR\/t1/ /40 /20/ /".*"/"<errmsg>"/
12
+ --echo # Some systems fail with errcode 40, or 90 (MIPS) when doing openat,
13
+ --echo # while others don't have openat and fail with errcode 20.
14
+ --replace_regex / '.*\/t1/ 'MYSQL_TMP_DIR\/t1/ /[49]0 /20/ /".*"/"<errmsg>"/
15
15
repair table t1;
16
16
drop table t1;
17
17
18
18
--replace_result $MYSQL_TMP_DIR MYSQL_TMP_DIR
19
19
eval create table t2 (a int) engine=aria data directory='$MYSQL_TMP_DIR';
20
20
insert t2 values (1);
21
21
--system ln -s $MYSQL_TMP_DIR/foobar5543 $MYSQL_TMP_DIR/t2.TMD
22
- --replace_regex / '.*\/t2/ 'MYSQL_TMP_DIR\/t2/ /40 /20/ /".*"/"<errmsg>"/
22
+ --replace_regex / '.*\/t2/ 'MYSQL_TMP_DIR\/t2/ /[49]0 /20/ /".*"/"<errmsg>"/
23
23
repair table t2;
24
24
drop table t2;
25
25
You can’t perform that action at this time.
0 commit comments