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

support append left all join append #736

Open
yokofly opened this issue May 17, 2024 · 0 comments · May be fixed by #739
Open

support append left all join append #736

yokofly opened this issue May 17, 2024 · 0 comments · May be fixed by #739
Assignees
Labels
enhancement New feature or request

Comments

@yokofly
Copy link
Collaborator

yokofly commented May 17, 2024

Describe what enhancement you'd like to have

 create stream t1(id int, value float);
 insert into t1(id, value) values(1, 7.8)(2, 4.6)(3, 5.1)(3, 0.1);


 create stream t3(id int, qty int);
 insert into t3(id, qty) values(5, 300)(3, 500)(1, 800);


 select id, value, qty from t1 left join t3 on t1.id = t3.id;
 Received exception from server (version 1.5.6):
 Code: 48. DB::Exception: Received from localhost:8463. DB::Exception: 'Append stream' LEFT ALL JOIN 'Append stream' is not supported. (NOT_IMPLEMENTED
@yokofly yokofly added the enhancement New feature or request label May 17, 2024
@yokofly yokofly changed the title support append left all join append。 support append left all join append May 17, 2024
@yl-lisen yl-lisen linked a pull request May 22, 2024 that will close this issue
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.

2 participants