summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_in.test
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2009-05-20 14:14:33 +0300
committerGeorgi Kodinov <joro@sun.com>2009-05-20 14:14:33 +0300
commit54d36955b2109d638d630366d91d88f37961ca6c (patch)
treea98013930010aebb231917e6f82895c485fb6ab7 /mysql-test/t/func_in.test
parente5a9d41c583946d13e5464e516f007a6eefc4b57 (diff)
downloadmariadb-git-54d36955b2109d638d630366d91d88f37961ca6c.tar.gz
Revert of the fix for bug #44399 (joro@sun.com-20090512135917-kal1dvtqpqgnj3yc).
Diffstat (limited to 'mysql-test/t/func_in.test')
-rw-r--r--mysql-test/t/func_in.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/t/func_in.test b/mysql-test/t/func_in.test
index 795a92180db..3fc1697f146 100644
--- a/mysql-test/t/func_in.test
+++ b/mysql-test/t/func_in.test
@@ -439,14 +439,4 @@ SELECT CASE c1 WHEN c1 + 1 THEN 1 END, ABS(AVG(c0)) FROM t1;
DROP TABLE t1;
-#
-# Bug #44399: crash with statement using TEXT columns, aggregates, GROUP BY,
-# and HAVING
-#
-
-CREATE TABLE t1(a TEXT);
-INSERT INTO t1 VALUES('iynfj');
-SELECT SUM( DISTINCT a ) FROM t1 GROUP BY a HAVING a IN ( AVG( 1 ), 1 + a );
-DROP TABLE t1;
-
--echo End of 5.1 tests