1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

MDEV-7916: main.analyze_format_json fails in buildbot on labrador

Make the test work on case insensitive FS
This commit is contained in:
Sergei Petrunia
2015-04-06 19:37:37 +03:00
parent eb83e9405f
commit 7d9e94e2e6
2 changed files with 6 additions and 6 deletions

View File

@@ -145,7 +145,7 @@ create table t1 (a int);
INSERT INTO t1 select * from t0;
--replace_regex /"r_total_time_ms": [0-9]*[.]?[0-9]*/"r_total_time_ms": "REPLACED"/
analyze format=json (select * from t1 A where a<5) union (select * from t1 B where a in (2,3));
analyze format=json (select * from t1 tbl1 where a<5) union (select * from t1 tbl2 where a in (2,3));
drop table t0, t1;