summaryrefslogtreecommitdiff
path: root/mysql-test/t/subselect.test
diff options
context:
space:
mode:
authorGeorgi Kodinov <joro@sun.com>2010-01-19 14:48:41 +0200
committerGeorgi Kodinov <joro@sun.com>2010-01-19 14:48:41 +0200
commit2fa49930cab5e070b5abaadbc2ab2b0899bc41b5 (patch)
tree392047c6a34b03ea06f7909218c81988283ed4ea /mysql-test/t/subselect.test
parent8c6d6c0c6caaecfce24ae031ffca1f0031ce798d (diff)
downloadmariadb-git-2fa49930cab5e070b5abaadbc2ab2b0899bc41b5.tar.gz
revert of the fix for bug #45989: pushed by mistake.
Diffstat (limited to 'mysql-test/t/subselect.test')
-rw-r--r--mysql-test/t/subselect.test17
1 files changed, 0 insertions, 17 deletions
diff --git a/mysql-test/t/subselect.test b/mysql-test/t/subselect.test
index eca86de1e82..a4314c45cba 100644
--- a/mysql-test/t/subselect.test
+++ b/mysql-test/t/subselect.test
@@ -3585,21 +3585,4 @@ SELECT 1 FROM t1 GROUP BY
(SELECT LAST_INSERT_ID() FROM t1 ORDER BY MIN(a) ASC LIMIT 1);
DROP TABLE t1;
---echo #
---echo # Bug #45989 take 2 : memory leak after explain encounters an
---echo # error in the query
---echo #
-
-CREATE TABLE t1(a LONGTEXT);
-INSERT INTO t1 VALUES (repeat('a',@@global.max_allowed_packet));
-INSERT INTO t1 VALUES (repeat('b',@@global.max_allowed_packet));
-
---error ER_BAD_FIELD_ERROR
-EXPLAIN EXTENDED SELECT DISTINCT 1 FROM t1,
-(SELECT DISTINCTROW a AS away FROM t1 GROUP BY a WITH ROLLUP) AS d1
-WHERE t1.a = d1.a;
-
-DROP TABLE t1;
-
-
--echo End of 5.1 tests.