-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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: Initial support for SQL ARRAY
literals and the UNNEST
table function
#16330
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #16330 +/- ##
==========================================
- Coverage 81.51% 81.50% -0.01%
==========================================
Files 1414 1414
Lines 185944 185997 +53
Branches 3027 3027
==========================================
+ Hits 151569 151606 +37
- Misses 33844 33861 +17
+ Partials 531 530 -1 ☔ View full report in Codecov by Sentry. |
CodSpeed Performance ReportMerging #16330 will improve performances by 19.76%Comparing Summary
Benchmarks breakdown
|
156f31f
to
9a6945e
Compare
9a6945e
to
275027f
Compare
Update
Started extending our SQL interface support to list/array data:
ARRAY
literals and declareUNNEST
table functions.[1,2,3]
orARRAY[1,2,3]
.col::type[]
orCAST(col AS type[])
syntax.Examples
Follow-ups
UNNEST ... WITH ORDINALITY
.[[1,2,3], [4,5,6]]
).