-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Fix](Variant) check storage type before apply get_row_ranges_by_dict
#38413
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
1. storage type maybe missmatch with predicate type eg. cast(v['a'] as date) = '2020-01-01'. v['a'] in storage is string type, but predicate type is date type
2. serialization object with empty subcolumns may lost num_rows, so need to record num_rows and set back num_rows in serdes
|
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! 👍" |
TPC-H: Total hot run time: 39221 ms |
TPC-DS: Total hot run time: 173703 ms |
ClickBench: Total hot run time: 31.07 s |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
4e283cc to
6084257
Compare
|
clang-tidy review says "All clean, LGTM! 👍" |
|
clang-tidy review says "All clean, LGTM! 👍" |
2 similar comments
|
clang-tidy review says "All clean, LGTM! 👍" |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
run buildall |
|
clang-tidy review says "All clean, LGTM! 👍" |
|
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
|
clang-tidy review says "All clean, LGTM! 👍" |
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
amorynan
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
|
run performance |
|
run buildall |
TPC-H: Total hot run time: 42059 ms |
TPC-H: Total hot run time: 41593 ms |
TPC-DS: Total hot run time: 170426 ms |
TPC-DS: Total hot run time: 171368 ms |
ClickBench: Total hot run time: 30 s |
ClickBench: Total hot run time: 30.12 s |
…t` (apache#38413) 1. storage type maybe missmatch with predicate type eg. cast(v['a'] as date) = '2020-01-01'. v['a'] in storage is string type, but predicate type is date type 2. serialization object with empty subcolumns may lost num_rows, so need to record num_rows and set back num_rows in serdes
…t` (apache#38413) 1. storage type maybe missmatch with predicate type eg. cast(v['a'] as date) = '2020-01-01'. v['a'] in storage is string type, but predicate type is date type 2. serialization object with empty subcolumns may lost num_rows, so need to record num_rows and set back num_rows in serdes
… empty (apache#38413) serialization object with empty subcolumns may lost num_rows, so need to record num_rows and set back num_rows in serdes backport apache#38413
storage type maybe missmatch with predicate type eg. cast(v['a'] as date) = '2020-01-01'. v['a'] in storage is string type, but predicate type is date type
serialization object with empty subcolumns may lost num_rows, so need to record num_rows and set back num_rows in serdes
Proposed changes
Issue Number: close #xxx