-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[cherry-pick](branch-21) fix tablet sink shuffle without project not match the output tuple (#40299)(#41293) #41327
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
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
… output tuple (apache#40299) ``` INSERT INTO tbl_4 SELECT k1, k2, k2 FROM tbl_1; the tbl_1 have k1,k2 columns the tbl_4 have k1,k2,v columns if without project expr, will be only two columns not match the output tuple. ``` the co-auther of FE code from @starocean999
… rather than convert_block (apache#41293) ## Proposed changes the convert_block is empty firstly, after execute exprs will be filled. so convert_block maybe different with block. so when send data we still need use block. <!--Describe your changes.-->
9431202 to
2bd700d
Compare
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
TeamCity be ut coverage result: |
Proposed changes
cherry-pick from master (#40299)(#41293)