-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Bug](exchange) fix tablet sink shuffle without project not match the output tuple #40299
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
[Bug](exchange) fix tablet sink shuffle without project not match the output tuple #40299
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
run buildall |
TPC-H: Total hot run time: 38514 ms |
TPC-DS: Total hot run time: 188022 ms |
ClickBench: Total hot run time: 32.62 s |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
run buildall |
|
TeamCity be ut coverage result: |
|
run buildall |
TPC-H: Total hot run time: 38064 ms |
|
TeamCity be ut coverage result: |
TPC-DS: Total hot run time: 193150 ms |
ClickBench: Total hot run time: 32.74 s |
8b1885f to
4192550
Compare
|
run buildall |
|
TeamCity be ut coverage result: |
TPC-H: Total hot run time: 38242 ms |
TPC-DS: Total hot run time: 193684 ms |
ClickBench: Total hot run time: 31.82 s |
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
|
run buildall |
TPC-H: Total hot run time: 38027 ms |
|
TeamCity be ut coverage result: |
TPC-DS: Total hot run time: 192569 ms |
ClickBench: Total hot run time: 32.57 s |
015668c to
0756437
Compare
|
run buildall |
0756437 to
d20d165
Compare
|
run buildall |
TPC-H: Total hot run time: 40464 ms |
|
TeamCity be ut coverage result: |
TPC-DS: Total hot run time: 194608 ms |
ClickBench: Total hot run time: 31.34 s |
|
PR approved by at least one committer and no changes requested. |
HappenLee
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
… 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
… output tuple (#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
… 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
… 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
Proposed changes
the co-auther of FE code from @starocean999