summaryrefslogtreecommitdiff
path: root/mysql-test/main/join_outer.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/join_outer.result')
-rw-r--r--mysql-test/main/join_outer.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/join_outer.result b/mysql-test/main/join_outer.result
index 60eda4e006c..4a2868ee02b 100644
--- a/mysql-test/main/join_outer.result
+++ b/mysql-test/main/join_outer.result
@@ -2276,7 +2276,7 @@ id select_type table type possible_keys key key_len ref rows Extra
explain select * from t1 left join t2 on t2.c is null;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 9
-1 SIMPLE t2 ref c c 5 const 312 Using where
+1 SIMPLE t2 ALL c NULL NULL NULL 1000 Using where
drop table t1,t2;
#
# MDEV-10006: optimizer doesn't convert outer join to inner on views with WHERE clause