-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Revert "[Improvementation](join) empty_block shall be set true when b… #33916
Conversation
…uild block only one row (apache#33721)" This reverts commit a93c865.
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
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
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
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.
clang-tidy made some suggestions
@@ -62,17 +62,15 @@ void ColumnWithTypeAndName::dump_structure(std::ostream& out) const { | |||
out << name; | |||
} | |||
|
|||
if (type) { | |||
if (type) |
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.
warning: statement should be inside braces [readability-braces-around-statements]
if (type) | |
if (type) { |
be/src/vec/core/column_with_type_and_name.cpp:66:
- else
+ } else
else | ||
out << " nullptr"; |
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.
warning: statement should be inside braces [readability-braces-around-statements]
else | |
out << " nullptr"; | |
else { | |
out << " nullptr"; | |
} |
if (column) { | ||
out << ' ' << column->dump_structure() << "(use_count=" << column->use_count() << ')'; | ||
} else { | ||
if (column) |
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.
warning: statement should be inside braces [readability-braces-around-statements]
if (column) | |
if (column) { |
be/src/vec/core/column_with_type_and_name.cpp:71:
- else
+ } else
else | ||
out << " nullptr"; |
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.
warning: statement should be inside braces [readability-braces-around-statements]
else | |
out << " nullptr"; | |
else { | |
out << " nullptr"; | |
} |
TPC-H: Total hot run time: 38669 ms
|
TeamCity be ut coverage result: |
TPC-DS: Total hot run time: 184617 ms
|
ClickBench: Total hot run time: 31.26 s
|
Load test result on machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
|
…uild block only one row (apache#33721)" (apache#33916) This reverts commit a93c865.
…uild block only one row (#33721)"
This reverts commit a93c865.
Proposed changes
Issue Number: close #xxx
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...