summaryrefslogtreecommitdiff
path: root/mysql-test/main/innodb_icp.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2019-08-08 22:45:55 +0300
committerSergei Golubchik <serg@mariadb.org>2019-08-23 22:03:54 +0200
commitde8b51fdc9d998fdf9c2d5c317a6da063c73d84a (patch)
treea031751bd0c1f7ae734beb869d06ecd42633555b /mysql-test/main/innodb_icp.result
parent76ce6ae4bbbe169e965c93e9ff1aacae8270dabb (diff)
downloadmariadb-git-de8b51fdc9d998fdf9c2d5c317a6da063c73d84a.tar.gz
Fixed some test that failed randomly
Diffstat (limited to 'mysql-test/main/innodb_icp.result')
-rw-r--r--mysql-test/main/innodb_icp.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/main/innodb_icp.result b/mysql-test/main/innodb_icp.result
index d65acd5a48d..5a3a5b6432b 100644
--- a/mysql-test/main/innodb_icp.result
+++ b/mysql-test/main/innodb_icp.result
@@ -435,9 +435,9 @@ EXPLAIN
SELECT * FROM t1
WHERE pk IN (SELECT it.pk FROM t2 JOIN t2 AS it ON it.i=it.i WHERE it.pk-t1.i<10);
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY t1 ALL NULL NULL NULL NULL 3 Using where
-2 DEPENDENT SUBQUERY it eq_ref PRIMARY PRIMARY 4 func 1 Using where
-2 DEPENDENT SUBQUERY t2 index NULL PRIMARY 4 NULL 3 Using index; Using join buffer (flat, BNL join)
+1 PRIMARY t1 ALL NULL NULL NULL NULL # Using where
+2 DEPENDENT SUBQUERY it eq_ref PRIMARY PRIMARY 4 func # Using where
+2 DEPENDENT SUBQUERY t2 index NULL PRIMARY 4 NULL # Using index; Using join buffer (flat, BNL join)
SELECT * FROM t1
WHERE pk IN (SELECT it.pk FROM t2 JOIN t2 AS it ON it.i=it.i WHERE it.pk-t1.i<10);
pk i