diff options
author | Alexander Barkov <bar@mariadb.org> | 2016-05-17 13:41:39 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2016-05-17 13:41:39 +0400 |
commit | 7e66a24dfb381290d59786c36e1dc478ad365bd1 (patch) | |
tree | 6488f6b81648e4f2e93364dfea4bac705ec35efa /mysql-test/r/select_jcl6.result | |
parent | 971d777ac1a41a1131c509c0496975827ac70dcc (diff) | |
download | mariadb-git-7e66a24dfb381290d59786c36e1dc478ad365bd1.tar.gz |
MDEV-10079 sql_yacc.yy: Remove non-parenthesized SELECT from table_ref
Diffstat (limited to 'mysql-test/r/select_jcl6.result')
-rw-r--r-- | mysql-test/r/select_jcl6.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/select_jcl6.result b/mysql-test/r/select_jcl6.result index 81e52929881..99400a09ac7 100644 --- a/mysql-test/r/select_jcl6.result +++ b/mysql-test/r/select_jcl6.result @@ -3415,7 +3415,7 @@ f1 f2 f2 NULL a NULL drop table t1,t2; select * from (select * left join t on f1=f2) tt; -ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'on f1=f2) tt' at line 1 +ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'left join t on f1=f2) tt' at line 1 CREATE TABLE t1 (sku int PRIMARY KEY, pr int); CREATE TABLE t2 (sku int PRIMARY KEY, sppr int, name varchar(255)); INSERT INTO t1 VALUES |