mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
21 lines
425 B
Text
21 lines
425 B
Text
|
#
|
||
|
# MDEV-5113 Wrong result (extra row) and valgrind warnings in Item_maxmin_subselect::any_value on 2nd execution of PS with SELECT subquery
|
||
|
#
|
||
|
|
||
|
CREATE TABLE t1 (b INT NOT NULL);
|
||
|
INSERT INTO t1 VALUES (0),(8);
|
||
|
|
||
|
PREPARE stmt FROM '
|
||
|
SELECT 1 FROM t1 AS o
|
||
|
WHERE o.b >= ALL (
|
||
|
SELECT a2.b FROM t1 AS a1 LEFT JOIN t1 AS a2 ON ( a2.b = a1.b )
|
||
|
WHERE a1.b <= a2.b
|
||
|
)
|
||
|
';
|
||
|
|
||
|
EXECUTE stmt;
|
||
|
EXECUTE stmt;
|
||
|
|
||
|
DROP TABLE t1;
|
||
|
|