Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2.4
-
None
Description
Problem
CTE alias do not appear to work as part of a View definition. The view will be created without error, but selecting from the view results in
ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1
|
Reproduce
Select works as expected with CTE
with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2;
|
+-----+-----+
|
| one | two |
|
+-----+-----+
|
| 1 | 2 |
|
+-----+-----+
|
1 row in set (0.00 sec)
|
View get created without error with the same CTE
create view vw as with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2;
|
Query OK, 0 rows affected (0.01 sec)
|
Query fails against the view
select * from vw;
|
ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1
|
Solution
If this is a valid construct, then the query should execute as expected (per the un-view version).
If this is an invalid construct, then the create view should fail.
Workaround
None at present
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
h1. Problem
CTE alias do not appear to work as part of a View definition. The view will be created without error, but selecting from the view results in {code} ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Reproduce Select works as expected with CTE {code} with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; +-----+-----+ | one | two | +-----+-----+ | 1 | 2 | +-----+-----+ 1 row in set (0.00 sec) {code} View get created without error with the same CTE {code} create view vw as with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; Query OK, 0 rows affected (0.01 sec) {code} Query fails against the view {code} select * from vw; ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Solution If this is a valid construct, then the query should execute as expected (per the un-view version). If this is an invalid construct, then the create view should fail. h1. Workaround None at present |
h1. Problem
CTE alias do not appear to work as part of a View definition. The view will be created without error, but selecting from the view results in {code} ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Reproduce Select works as expected with CTE {code} with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; +-----+-----+ | one | two | +-----+-----+ | 1 | 2 | +-----+-----+ 1 row in set (0.00 sec) {code} View get created without error with the same CTE {code} create view vw as with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; Query OK, 0 rows affected (0.01 sec) {code} Query fails against the view {code} select * from vw; ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Solution If this is a valid construct, then the query should execute as expected (per the un-view version). If this is an invalid construct, then the create view should fail. h1. Workaround None at present h1. Found In 10.2.4 |
Issue Type | Task [ 3 ] | Bug [ 1 ] |
Affects Version/s | 10.2.4 [ 22116 ] |
Description |
h1. Problem
CTE alias do not appear to work as part of a View definition. The view will be created without error, but selecting from the view results in {code} ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Reproduce Select works as expected with CTE {code} with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; +-----+-----+ | one | two | +-----+-----+ | 1 | 2 | +-----+-----+ 1 row in set (0.00 sec) {code} View get created without error with the same CTE {code} create view vw as with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; Query OK, 0 rows affected (0.01 sec) {code} Query fails against the view {code} select * from vw; ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Solution If this is a valid construct, then the query should execute as expected (per the un-view version). If this is an invalid construct, then the create view should fail. h1. Workaround None at present h1. Found In 10.2.4 |
h1. Problem
CTE alias do not appear to work as part of a View definition. The view will be created without error, but selecting from the view results in {code} ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Reproduce Select works as expected with CTE {code} with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; +-----+-----+ | one | two | +-----+-----+ | 1 | 2 | +-----+-----+ 1 row in set (0.00 sec) {code} View get created without error with the same CTE {code} create view vw as with alias1 as (select 1 as one), alias2 as (select 2 as two) select one, two from alias1, alias2; Query OK, 0 rows affected (0.01 sec) {code} Query fails against the view {code} select * from vw; ERROR 1064 (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 'alias2 as (select 2 AS `two`), select `alias1`.`one` AS `one`,`alias2`.`two` AS ' at line 1 {code} h1. Solution If this is a valid construct, then the query should execute as expected (per the un-view version). If this is an invalid construct, then the create view should fail. h1. Workaround None at present |
Assignee | Sergei Petrunia [ psergey ] |
Assignee | Sergei Petrunia [ psergey ] | Igor Babaev [ igor ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Fix Version/s | 10.2.5 [ 22117 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 79853 ] | MariaDB v4 [ 151775 ] |
Zendesk Related Tickets | 106862 |