diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-03-29 18:06:08 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-03-29 18:06:08 +0200 |
commit | bbf1a7961a37daa08e9818d381df1bca9e562bed (patch) | |
tree | 6736bef94226f281666436307a8a3f184a0ab463 /mysql-test | |
parent | 5a8da660a853047e6877e42631b1911bcf54b340 (diff) | |
download | mariadb-git-bbf1a7961a37daa08e9818d381df1bca9e562bed.tar.gz |
fix the test case for windows: replace_result \\ /
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/suite/maria/t/maria-autozerofill.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/t/maria-autozerofill.test b/mysql-test/suite/maria/t/maria-autozerofill.test index 637b7dafe92..1a9445ed9f0 100644 --- a/mysql-test/suite/maria/t/maria-autozerofill.test +++ b/mysql-test/suite/maria/t/maria-autozerofill.test @@ -54,6 +54,7 @@ EOF disable_ps_protocol; # see maria-recover.test replace_regex /Table.*t1/t1/ ; +replace_result \\ /; select * from t1; enable_ps_protocol; flush table t1; @@ -95,7 +96,9 @@ EOF check table t2; check table t2; repair table t2; +replace_result \\ /; optimize table t3; +replace_result \\ /; analyze table t4; drop database mysqltest; |