diff options
Diffstat (limited to '')
-rw-r--r-- | mysql-test/main/ps_max_subselect-5113.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/main/ps_max_subselect-5113.result b/mysql-test/main/ps_max_subselect-5113.result new file mode 100644 index 00000000..427ef628 --- /dev/null +++ b/mysql-test/main/ps_max_subselect-5113.result @@ -0,0 +1,16 @@ +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; +1 +1 +EXECUTE stmt; +1 +1 +DROP TABLE t1; |