Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3(EOL)
-
None
Description
The following query demonstrates the problem:
create view v1 as with t(a) as (values (2), (1)) select a from t;
|
MariaDB [test]> select * from v1;
|
ERROR 1356 (HY000): View 'test.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
|