summaryrefslogtreecommitdiff
path: root/mysql-test/t/derived.test
diff options
context:
space:
mode:
authorSinisa@sinisa.nasamreza.org <>2002-10-30 18:23:02 +0200
committerSinisa@sinisa.nasamreza.org <>2002-10-30 18:23:02 +0200
commita5fcadce654f6b48eb2dd06c9c7fbab5dcbbf43c (patch)
tree7db14c00103c136297a1d49bfa98058695ddde27 /mysql-test/t/derived.test
parent26c6d970d9932c397afb5b11d780f595d01c3a8a (diff)
downloadmariadb-git-a5fcadce654f6b48eb2dd06c9c7fbab5dcbbf43c.tar.gz
some test cases for the bugs being fixed
Diffstat (limited to 'mysql-test/t/derived.test')
-rw-r--r--mysql-test/t/derived.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/derived.test b/mysql-test/t/derived.test
index 76ef5fba351..87910c29706 100644
--- a/mysql-test/t/derived.test
+++ b/mysql-test/t/derived.test
@@ -9,3 +9,5 @@ CREATE TABLE t3 (a int not null, b char (10) not null);
insert into t3 values (3,'f'),(4,'y'),(5,'z'),(6,'c');
select t1.a,t4.y from t1,(select t2.a as y from t2,(select t3.b from t3 where t3.a>3) as t5 where t2.b=t5.b) as t4 where t1.a = t4.y;
drop table if exists t1.t2,t3;
+select * from (select 1);
+select a from (select 1 as a);