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
Is your feature request related to a problem? Please describe.
There are many use cases in which tables are self referential and the only way to evaluate the contents of the table is to iteratively recurse through the table. This is only possible in SQL with a recursive SQL statement otherwise you must resort to external processing or acknowledge limitations in SQL implementation. This is a very common batch processing use case for hierarchical which StarRocks should support.
Describe the solution you'd like
Support the following SQL syntax:
WITH RECURSIVE < cte-name >AS (
...
)
Describe alternatives you've considered
N/A
Additional context
This is supported by almost all major modern databases:
This is a significant gap in functionality to replace other SQL-based query systems. Needing to traverse a hierarchy (e.g. employee-manager chains) is a relatively common need.
Feature request
Is your feature request related to a problem? Please describe.
There are many use cases in which tables are self referential and the only way to evaluate the contents of the table is to iteratively recurse through the table. This is only possible in SQL with a recursive SQL statement otherwise you must resort to external processing or acknowledge limitations in SQL implementation. This is a very common batch processing use case for hierarchical which StarRocks should support.
Describe the solution you'd like
Support the following SQL syntax:
Describe alternatives you've considered
N/A
Additional context
This is supported by almost all major modern databases:
Past issues have been marked as stale and closed:
Has been asked for in the past:
The text was updated successfully, but these errors were encountered: