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
When running a recursive CTE that doesn't have a limit, MySQL fails the query with:
> with recursive cte as (select1as n union allselect n+1from cte)
select*from cte
ERROR 3636 (HY000): Recursive query aborted after 1001 iterations. Try increasing @@cte_max_recursion_depth to a larger value.0
Vitess also fails correctly in OLTP mode, but in OLAP mode the connection just hangs.
The text was updated successfully, but these errors were encountered:
When running a recursive CTE that doesn't have a limit, MySQL fails the query with:
Vitess also fails correctly in OLTP mode, but in OLAP mode the connection just hangs.
The text was updated successfully, but these errors were encountered: