summaryrefslogtreecommitdiff
path: root/mysql-test/r/intersect.result
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2017-11-10 11:22:51 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2017-11-10 11:22:51 +0100
commit78a31db6b322ec0e63601ed471feaedc0ad2987c (patch)
tree471b5e5211d8a895071dd9f130d3df477c242496 /mysql-test/r/intersect.result
parent06a9a366a3df18b02a97fce8e585229f0c01bd09 (diff)
downloadmariadb-git-bb-10.3-MDEV-13723.tar.gz
MDEV-13723: Server crashes in ha_heap::find_unique_row or Assertion `0' failed in st_select_lex_unit::optimize with INTERSECTbb-10.3-MDEV-13723
With INTERSECT/EXCEPT fakt that subquery item of IN/ALL/ANY was not assigned value does not mean that temporary table used for calculating unit is empty (records could be deleted).
Diffstat (limited to 'mysql-test/r/intersect.result')
-rw-r--r--mysql-test/r/intersect.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/intersect.result b/mysql-test/r/intersect.result
index 5dfb7fb6875..7a0301a23e6 100644
--- a/mysql-test/r/intersect.result
+++ b/mysql-test/r/intersect.result
@@ -689,3 +689,4 @@ View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS (select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1`) union select `__3`.`c` AS `c`,`__3`.`d` AS `d` from ((select `test`.`t2`.`c` AS `c`,`test`.`t2`.`d` AS `d` from `test`.`t2`) intersect (select `test`.`t3`.`e` AS `e`,`test`.`t3`.`f` AS `f` from `test`.`t3`)) `__3` union (select 4 AS `4`,4 AS `4`) latin1 latin1_swedish_ci
drop view v1;
drop tables t1,t2,t3;
+# End of 10.3 tests