-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(planner): support common table expression(CTE) #7056
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Maybe we can add more tests to verify it. I wrote some tests from clickhouse in thsi pr simple cte. You can verity it. |
For documentation for common table expression(CTE) , cc @soyeric128 Reference: |
I hereby agree to the terms of the CLA available at: https://databend.rs/dev/policies/cla/
Summary
Support CTE in planner.
Note: we don't support recursive CTE currently.
In the future, we can optimize CTE, there is a proposal: #7061
Fixes #6246