Skip to content

Commit 0fd5ecb

Browse files
author
Varun Gupta
committed
Adjust the result for join_cache.test
1 parent cb9fa1a commit 0fd5ecb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mysql-test/main/join_cache.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5197,7 +5197,7 @@ SELECT * FROM (SELECT DISTINCT * FROM t1) t
51975197
WHERE t.a IN (SELECT t2.a FROM t2);
51985198
id select_type table type possible_keys key key_len ref rows Extra
51995199
1 PRIMARY t2 ALL NULL NULL NULL NULL 4 Using where; Start temporary
5200-
1 PRIMARY <derived2> ref key0 key0 5 test.t2.a 2 End temporary
5200+
1 PRIMARY <derived2> ref key0 key0 5 test.t2.a 1 End temporary
52015201
2 DERIVED t1 ALL NULL NULL NULL NULL 3 Using temporary
52025202
SELECT * FROM (SELECT DISTINCT * FROM t1) t
52035203
WHERE t.a IN (SELECT t2.a FROM t2);
@@ -5208,8 +5208,8 @@ EXPLAIN
52085208
SELECT * FROM (SELECT DISTINCT * FROM t1) t
52095209
WHERE t.a IN (SELECT t2.a FROM t2);
52105210
id select_type table type possible_keys key key_len ref rows Extra
5211-
1 PRIMARY <derived2> ALL NULL NULL NULL NULL 3
5212-
1 PRIMARY t2 ALL NULL NULL NULL NULL 4 Using where; Start temporary; End temporary; Using join buffer (flat, BNL join)
5211+
1 PRIMARY t2 ALL NULL NULL NULL NULL 4 Using where; Start temporary
5212+
1 PRIMARY <derived2> ref key0 key0 5 test.t2.a 1 End temporary
52135213
2 DERIVED t1 ALL NULL NULL NULL NULL 3 Using temporary
52145214
SELECT * FROM (SELECT DISTINCT * FROM t1) t
52155215
WHERE t.a IN (SELECT t2.a FROM t2);

0 commit comments

Comments
 (0)