summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_misc.test
diff options
context:
space:
mode:
authorGeorgi Kodinov <Georgi.Kodinov@Oracle.com>2010-08-02 11:17:47 +0300
committerGeorgi Kodinov <Georgi.Kodinov@Oracle.com>2010-08-02 11:17:47 +0300
commit05e88a5bbf19d89a9c76318f31c4731d42c63b05 (patch)
tree83ab28bc55d6e43bd4b888c039e628587c586802 /mysql-test/t/func_misc.test
parent06469e2323c8671da7ade7816457e98ecb76e371 (diff)
parentb7e8fd0863697836af80807c82e6383ab646853e (diff)
downloadmariadb-git-05e88a5bbf19d89a9c76318f31c4731d42c63b05.tar.gz
merge
Diffstat (limited to 'mysql-test/t/func_misc.test')
-rw-r--r--mysql-test/t/func_misc.test15
1 files changed, 14 insertions, 1 deletions
diff --git a/mysql-test/t/func_misc.test b/mysql-test/t/func_misc.test
index a60eb9cf845..5d93813a9ff 100644
--- a/mysql-test/t/func_misc.test
+++ b/mysql-test/t/func_misc.test
@@ -478,4 +478,17 @@ SELECT COALESCE(a) = COALESCE(b) FROM t1;
DROP TABLE t1;
---echo End of tests
+
+--echo #
+--echo # Bug #54461: crash with longblob and union or update with subquery
+--echo #
+
+CREATE TABLE t1 (a INT, b LONGBLOB);
+INSERT INTO t1 VALUES (1, '2'), (2, '3'), (3, '2');
+
+SELECT DISTINCT LEAST(a, (SELECT b FROM t1 LIMIT 1)) FROM t1 UNION SELECT 1;
+SELECT DISTINCT GREATEST(a, (SELECT b FROM t1 LIMIT 1)) FROM t1 UNION SELECT 1;
+
+DROP TABLE t1;
+
+--echo End of 5.1 tests