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: Support Full Join when HashJoin cannot be used #206

Open
KKould opened this issue Apr 10, 2024 · 0 comments · Fixed by #221
Open

Feat: Support Full Join when HashJoin cannot be used #206

KKould opened this issue Apr 10, 2024 · 0 comments · Fixed by #221
Labels
enhancement New feature or request

Comments

@KKould
Copy link
Member

KKould commented Apr 10, 2024

Feature Request

statement ok
CREATE TABLE onecolumn (id INT PRIMARY KEY, x INT NULL)

statement ok
CREATE TABLE empty (e_id INT PRIMARY KEY, x INT)

statement ok
INSERT INTO onecolumn(id, x) VALUES (0, 44), (1, NULL), (2, 42)

# TODO: Full Join on nested loop join
query II
SELECT * FROM onecolumn AS a(x) FULL OUTER JOIN empty AS b(y) ON a.x = b.y ORDER BY a.x
----
42 NULL
44 NULL
NULL NULL
@KKould KKould added the enhancement New feature or request label Apr 10, 2024
@KKould KKould changed the title Feat; Support Full Join when HashJoin cannot be used Feat: Support Full Join when HashJoin cannot be used Aug 8, 2024
@KKould KKould linked a pull request Sep 14, 2024 that will close this issue
9 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant