Details
-
Type:
Bug
-
Status: Open (View Workflow)
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 10.6.7, 10.7.3, 10.8.2
-
Fix Version/s: None
-
Component/s: Data Manipulation - Subquery, Optimizer
-
Labels:
Description
The following query is currently not possible in MariaDB:
CREATE TABLE t (x int); |
 |
SELECT ( |
SELECT u.x |
FROM ( |
SELECT t.x |
) u
|
)
|
FROM t; |
The error I'm getting is:
SQL Error [1109] [42S02]: (conn:9) Unknown table 't' in field list
|
Most RDBMS, including recent versions of MySQL 8 now support correlating derived tables like that. It's an essential feature for more sophisticated queries.
Attachments
Issue Links
- relates to
-
MDEV-26831 New name resolution
-
- Open
-