diff options
author | Monty <monty@mariadb.org> | 2020-03-27 12:30:10 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-03-27 12:30:10 +0200 |
commit | ff64152bc72d985862ab729a2cf6d6167531b1ed (patch) | |
tree | 91c0eabc7c3c9d093ce7da3ffac45f4b97261d5a /mysql-test/suite/maria | |
parent | 53aabda6b5ac6af989a97a00ff97efda9ff8772e (diff) | |
download | mariadb-git-ff64152bc72d985862ab729a2cf6d6167531b1ed.tar.gz |
Fixed failing tests in buildbot
- Updated icp_tests.inc and result files
- Updates usage of records_in_range() protype in cassandra
Diffstat (limited to 'mysql-test/suite/maria')
-rw-r--r-- | mysql-test/suite/maria/icp.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/suite/maria/icp.result b/mysql-test/suite/maria/icp.result index ad8b3b01dfe..149258de918 100644 --- a/mysql-test/suite/maria/icp.result +++ b/mysql-test/suite/maria/icp.result @@ -687,8 +687,8 @@ EXPLAIN SELECT t1.b, t1.c FROM t1, t2 WHERE t1.a = t2.a AND t1.b != 0 HAVING t1.c != 5 ORDER BY t1.c; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL PRIMARY NULL NULL NULL 101 Using where; Using filesort -1 SIMPLE t2 ref a a 515 test.t1.a 10 Using where +1 SIMPLE t1 ALL PRIMARY NULL NULL NULL # Using where; Using filesort +1 SIMPLE t2 ref a a 515 test.t1.a # Using where SELECT t1.b, t1.c FROM t1, t2 WHERE t1.a = t2.a AND t1.b != 0 HAVING t1.c != 5 ORDER BY t1.c; b c @@ -698,8 +698,8 @@ EXPLAIN SELECT t1.b, t1.c FROM t1, t2 WHERE t1.a = t2.a AND t1.b != 0 HAVING t1.c != 5 ORDER BY t1.c; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL PRIMARY NULL NULL NULL 101 Using where; Using filesort -1 SIMPLE t2 ref a a 515 test.t1.a 10 Using where +1 SIMPLE t1 ALL PRIMARY NULL NULL NULL # Using where; Using filesort +1 SIMPLE t2 ref a a 515 test.t1.a # Using where SELECT t1.b, t1.c FROM t1, t2 WHERE t1.a = t2.a AND t1.b != 0 HAVING t1.c != 5 ORDER BY t1.c; b c |