-
-
Notifications
You must be signed in to change notification settings - Fork 61
Add support for Common Table Expressions #179
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
Conversation
…ELETE, and UNION queries, including subqueries. Test and docs coverage is 100%.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #179 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 98 100 +2
Lines 2565 2635 +70
=========================================
+ Hits 2565 2635 +70
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I personally would have liked to have at least 1 test case with a real world complex query.
There, happy? One of them even revealed a bug 😜 |
These changes are now available in 3.31.0
CTEs (
WITH
clauses) are now supported bySELECT
,INSERT
,UPDATE
,DELETE
, andUNION
queries, including subqueries. Test and docs coverage is 100%.