diff options
author | Chaithra Gopalareddy <chaithra.gopalareddy@oracle.com> | 2012-02-24 11:55:28 +0530 |
---|---|---|
committer | Chaithra Gopalareddy <chaithra.gopalareddy@oracle.com> | 2012-02-24 11:55:28 +0530 |
commit | 61fb45bc9aa73ad3b2c66990c7f568ccc4590d02 (patch) | |
tree | c1855306f99962db75a31c71394c42cc9d55a8c1 /mysql-test/t | |
parent | c538ba96cd416c2194a0efbbee147c48a6a0abdb (diff) | |
parent | 6a0d03fce76616dd10e8d6bd83c19af26f8c5874 (diff) | |
download | mariadb-git-61fb45bc9aa73ad3b2c66990c7f568ccc4590d02.tar.gz |
Merge from 5.1 to 5.5
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/func_in.test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/t/func_in.test b/mysql-test/t/func_in.test index 08469b37967..dd4194e2a4e 100644 --- a/mysql-test/t/func_in.test +++ b/mysql-test/t/func_in.test @@ -562,4 +562,17 @@ SELECT 1 IN (YEAR(FROM_UNIXTIME(NULL)) ,1); --echo # +--echo # +--echo # Bug#13012483: EXPLAIN EXTENDED, PREPARED STATEMENT, CRASH IN CHECK_SIMPLE_EQUALITY +--echo # + +CREATE TABLE t1 (a INT); +PREPARE s FROM "SELECT 1 FROM t1 WHERE 1 < ALL (SELECT @:= (1 IN (SELECT 1 FROM t1)) FROM t1)"; +EXECUTE s; + +DROP TABLE t1; + +--echo # End of test BUG#13012483 + +--echo # --echo End of 5.1 tests |