Uh oh!
There was an error while loading. Please reload this page.
[fix](serde)fix the bug in DataTypeNullableSerDe.deserialize_column_from_fixed_json - #38245
Merged
morningman merged 3 commits intoAug 2, 2024
Merged
Conversation
doris-robot
commented
Jul 23, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
hubgeter
commented
Jul 23, 2024
ContributorAuthor
run buildall |
Contributor
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Jul 23, 2024
TPC-H: Total hot run time: 39840 ms |
doris-robot
commented
Jul 23, 2024
TPC-DS: Total hot run time: 173945 ms |
doris-robot
commented
Jul 23, 2024
ClickBench: Total hot run time: 30.29 s |
hubgeterforce-pushed
the
fix_nullable_serde_fixed_value
branch
from
July 29, 2024 03:55
b97b34c to
8903bcfCompareContributor
clang-tidy review says "All clean, LGTM! 👍" |
hubgeter
commented
Jul 29, 2024
ContributorAuthor
run buildall |
doris-robot
commented
Jul 29, 2024
TPC-H: Total hot run time: 41830 ms |
doris-robot
commented
Jul 29, 2024
TPC-DS: Total hot run time: 169221 ms |
doris-robot
commented
Jul 29, 2024
ClickBench: Total hot run time: 30 s |
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
Uh oh!
There was an error while loading. Please reload this page.
hubgeter
commented
Jul 31, 2024
ContributorAuthor
run buildall |
Contributor
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Jul 31, 2024
TPC-H: Total hot run time: 42288 ms |
doris-robot
commented
Jul 31, 2024
TPC-DS: Total hot run time: 171261 ms |
doris-robot
commented
Jul 31, 2024
ClickBench: Total hot run time: 30.38 s |
Contributor
PR approved by at least one committer and no changes requested. |
hubgeter added a commit
to hubgeter/doris
that referenced
this pull request
Aug 2, 2024
…rom_fixed_json (apache#38245) ## Proposed changes fix a bug in DataTypeNullableSerDe.deserialize_column_from_fixed_json. The expected behavior of the `deserialize_column_from_fixed_json` function is to `insert` n values into the column. However, when the `DataTypeNullableSerDe` class implements this function, the null_map column is `resize` to n, which does not insert n values into it. Since this function is only used by the `_fill_partition_columns` of the `parquet/orc reader` and is not called repeatedly for a `get_next_block`, this bug is covered up. before pr : apache#37377
yiguolei pushed a commit
that referenced
this pull request
Aug 5, 2024
dataroaring pushed a commit
that referenced
this pull request
Aug 11, 2024
…rom_fixed_json (#38245) ## Proposed changes fix a bug in DataTypeNullableSerDe.deserialize_column_from_fixed_json. The expected behavior of the `deserialize_column_from_fixed_json` function is to `insert` n values into the column. However, when the `DataTypeNullableSerDe` class implements this function, the null_map column is `resize` to n, which does not insert n values into it. Since this function is only used by the `_fill_partition_columns` of the `parquet/orc reader` and is not called repeatedly for a `get_next_block`, this bug is covered up. before pr : #37377
dataroaring pushed a commit
that referenced
this pull request
Aug 16, 2024
…rom_fixed_json (#38245) ## Proposed changes fix a bug in DataTypeNullableSerDe.deserialize_column_from_fixed_json. The expected behavior of the `deserialize_column_from_fixed_json` function is to `insert` n values into the column. However, when the `DataTypeNullableSerDe` class implements this function, the null_map column is `resize` to n, which does not insert n values into it. Since this function is only used by the `_fill_partition_columns` of the `parquet/orc reader` and is not called repeatedly for a `get_next_block`, this bug is covered up. before pr : #37377
HappenLee pushed a commit
to HappenLee/incubator-doris
that referenced
this pull request
Apr 24, 2026
…rom_fixed_json (apache#38245) ## Proposed changes fix a bug in DataTypeNullableSerDe.deserialize_column_from_fixed_json. The expected behavior of the `deserialize_column_from_fixed_json` function is to `insert` n values into the column. However, when the `DataTypeNullableSerDe` class implements this function, the null_map column is `resize` to n, which does not insert n values into it. Since this function is only used by the `_fill_partition_columns` of the `parquet/orc reader` and is not called repeatedly for a `get_next_block`, this bug is covered up. before pr : apache#37377
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposed changes
fix a bug in DataTypeNullableSerDe.deserialize_column_from_fixed_json.
The expected behavior of the
deserialize_column_from_fixed_jsonfunction is toinsertn values into the column.However, when the
DataTypeNullableSerDeclass implements this function, the null_map column isresizeto n, which does not insert n values into it. Since this function is only used by the_fill_partition_columnsof theparquet/orc readerand is not called repeatedly for aget_next_block, this bug is covered up.before pr : #37377