diff options
author | timour@mysql.com <> | 2005-11-18 10:51:46 +0200 |
---|---|---|
committer | timour@mysql.com <> | 2005-11-18 10:51:46 +0200 |
commit | 9a644b948c6fc657ef8e46123433d686575df2f4 (patch) | |
tree | 1efa3212eeaa46f808624a26ef2eaa112d924fb1 /mysql-test/t/view.test | |
parent | a42b3730aa2fa654cc90d9649f61b4e56ce35734 (diff) | |
download | mariadb-git-9a644b948c6fc657ef8e46123433d686575df2f4.tar.gz |
WL#2486 - natural/using joins according to SQL:2003.
Enabled view tests that didn't work before.
Diffstat (limited to 'mysql-test/t/view.test')
-rw-r--r-- | mysql-test/t/view.test | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index 7608d121c55..ad51597fd6f 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -147,11 +147,9 @@ insert into t1 values (1), (2), (3); create view v1 (a) as select a+1 from t1; create view v2 (a) as select a-1 from t1; ---disable_parsing # WL #2486 should enable these tests select * from t1 natural left join v1; select * from v2 natural left join t1; select * from v2 natural left join v1; ---enable_parsing drop view v1, v2; drop table t1; |