summaryrefslogtreecommitdiff
path: root/mysql-test/r/subselect_nulls.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/subselect_nulls.result')
-rw-r--r--mysql-test/r/subselect_nulls.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/subselect_nulls.result b/mysql-test/r/subselect_nulls.result
index 584c184870d..08982371269 100644
--- a/mysql-test/r/subselect_nulls.result
+++ b/mysql-test/r/subselect_nulls.result
@@ -115,3 +115,9 @@ k d1 d2
set optimizer_switch= @tmp_subselect_nulls;
drop table x1;
drop table x2;
+select (select 1, 2) in (select 3, 4);
+(select 1, 2) in (select 3, 4)
+0
+select (select NULL, NULL) in (select 3, 4);
+(select NULL, NULL) in (select 3, 4)
+NULL