You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# refer to same-named CTE in a subquery expression
query I
with cte as (Select i as j from a) select * from cte where j = (with cte as (select max(j) as j from cte) select j from cte);
----
42
Describe the bug
Error message/log
No response
To Reproduce
No response
Expected behavior
error: WITH query name "cte1" specified more than once
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
found in #5987
The text was updated successfully, but these errors were encountered: