diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-26 16:49:55 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-26 16:49:55 +0200 |
commit | ae729f93158e57ef52b57ead0ec4f0c052fdda92 (patch) | |
tree | 1889a609e5964b264cf5be84776c0c2aa558a1a2 /mysql-test/r/derived.result | |
parent | a14db06bfced19d46d0f85f17cb7567f678f799c (diff) | |
download | mariadb-git-ae729f93158e57ef52b57ead0ec4f0c052fdda92.tar.gz |
A fix for a bug with derived tables within subselect
within derived tables within ......
Diffstat (limited to 'mysql-test/r/derived.result')
-rw-r--r-- | mysql-test/r/derived.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/derived.result b/mysql-test/r/derived.result index 204ca86f306..b397c2f7635 100644 --- a/mysql-test/r/derived.result +++ b/mysql-test/r/derived.result @@ -65,3 +65,6 @@ a t 19 19 20 20 drop table if exists t1; +SELECT * FROM (SELECT (SELECT * FROM (SELECT 1 as a))); +(SELECT * FROM (SELECT 1 as a)) +1 |