Skip to content
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: Lateral unnest + additional list array logic #3363

Merged
merged 7 commits into from
Dec 16, 2024
Merged

Conversation

scsmithr
Copy link
Member

@scsmithr scsmithr commented Dec 16, 2024

GlareDB Shell
Preview (0.0.91) - There will be bugs!

>> SELECT * FROM (VALUES ([1,2,3]), ([8,9])) v(a), unnest(v.a);
┌─────────────┬────────┐
│ a           │ unnest │
│ List[Int32] │ Int32  │
├─────────────┼────────┤
│ [1, 2, 3]   │      1 │
│ [1, 2, 3]   │      2 │
│ [1, 2, 3]   │      3 │
│ [8, 9]      │      8 │
│ [8, 9]      │      9 │
└─────────────┴────────┘

@scsmithr scsmithr changed the title Sean/lateral unnest feat: Lateral unnest Dec 16, 2024
@scsmithr scsmithr changed the title feat: Lateral unnest feat: Lateral unnest + additional list array logic Dec 16, 2024
@scsmithr scsmithr marked this pull request as ready for review December 16, 2024 23:48
@scsmithr scsmithr merged commit 3117aea into main Dec 16, 2024
4 checks passed
@scsmithr scsmithr deleted the sean/lateral-unnest branch December 16, 2024 23:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant