diff options
author | Igor Babaev <igor@askmonty.org> | 2019-02-06 15:56:21 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2019-02-06 15:56:21 -0800 |
commit | 9e114455a95c15cd1e37dabef0dff1fe2588d50a (patch) | |
tree | 3852d63e83fa75d27f2a513676745a7a1a2fd82f /mysql-test/main/range.result | |
parent | 447e0f023fff0fa2ccfa7e93b77f1da3be3b43f1 (diff) | |
download | mariadb-git-9e114455a95c15cd1e37dabef0dff1fe2588d50a.tar.gz |
MDEV-16188 Post merge fixes:fixed warnings on Windows
Also adjusted some result files after Galina's last patch for ANALYZE.
Diffstat (limited to 'mysql-test/main/range.result')
-rw-r--r-- | mysql-test/main/range.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/range.result b/mysql-test/main/range.result index 8bef87d303b..a0e04fc29e2 100644 --- a/mysql-test/main/range.result +++ b/mysql-test/main/range.result @@ -2589,7 +2589,7 @@ insert into t2 values explain select * from t1,t2 where a = d and (a,e) in ((3,3),(7,7),(8,8)) and length(f) = 1; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t2 range|filter idx1,idx2 idx1|idx2 5|5 NULL 8 (14%) Using index condition; Using where; Using filter +1 SIMPLE t2 range|filter idx1,idx2 idx1|idx2 5|5 NULL 8 (14%) Using index condition; Using where; Using rowid filter 1 SIMPLE t1 ref idx idx 5 test.t2.d 8 explain format=json select * from t1,t2 where a = d and (a,e) in ((3,3),(7,7),(8,8)) and length(f) = 1; @@ -2694,7 +2694,7 @@ insert into t1 select * from t1; explain select * from t1,t2 where a = d and (a,e) in ((4,4),(7,7),(8,8)) and length(f) = 1; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t2 range|filter idx1,idx2 idx1|idx2 5|5 NULL 7 (7%) Using index condition; Using where; Using filter +1 SIMPLE t2 range|filter idx1,idx2 idx1|idx2 5|5 NULL 7 (7%) Using index condition; Using where; Using rowid filter 1 SIMPLE t1 ref idx idx 5 test.t2.d 11 explain format=json select * from t1,t2 where a = d and (a,e) in ((4,4),(7,7),(8,8)) and length(f) = 1; |