Uh oh!
There was an error while loading. Please reload this page.
[fix] remove parse_id - #57240
Merged
Merged
Conversation
hello-stephen
commented
Oct 22, 2025
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
wumeibanfa
commented
Oct 22, 2025
ContributorAuthor
run buildall |
doris-robot
commented
Oct 22, 2025
ClickBench: Total hot run time: 28.3 s |
wumeibanfa
commented
Oct 22, 2025
ContributorAuthor
run beut |
hello-stephen
commented
Oct 22, 2025
Contributor
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
wumeibanfa
commented
Oct 23, 2025
ContributorAuthor
run p0 |
wumeibanfa
commented
Oct 23, 2025
ContributorAuthor
run nonConcurrent |
hello-stephen
commented
Oct 23, 2025
Contributor
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
wumeibanfa
commented
Oct 23, 2025
ContributorAuthor
run p0 |
hello-stephen
commented
Oct 23, 2025
Contributor
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
yiguolei
approved these changes
Oct 26, 2025
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
zclllyybb
approved these changes
Oct 26, 2025
Uh oh!
There was an error while loading. Please reload this page.
github-actionsBot
pushed a commit
that referenced
this pull request
Oct 26, 2025
Related PR: #55057 Problem Summary: Remove `parse_id`, as this method modifies the string. When using the same string, a second call to this method will fail. Following testing, from_hex and parse_id demonstrate identical behaviour. ```c++ parse_id(abcd-1234) = (from_hex(abcd), from_hex(1234)) = (0xabcd, 0x1234) parse_id(0123456789abcdef-0123456789abcdef) = (from_hex(0123456789abcdef), from_hex(0123456789abcdef)) = (0x0123456789abcdef, 0x0123456789abcdef) ```
yiguolei pushed a commit
that referenced
this pull request
Oct 27, 2025
dwdwqfwe pushed a commit
to dwdwqfwe/doris
that referenced
this pull request
Oct 31, 2025
Related PR: apache#55057 Problem Summary: Remove `parse_id`, as this method modifies the string. When using the same string, a second call to this method will fail. Following testing, from_hex and parse_id demonstrate identical behaviour. ```c++ parse_id(abcd-1234) = (from_hex(abcd), from_hex(1234)) = (0xabcd, 0x1234) parse_id(0123456789abcdef-0123456789abcdef) = (from_hex(0123456789abcdef), from_hex(0123456789abcdef)) = (0x0123456789abcdef, 0x0123456789abcdef) ```
63 tasks
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.
What problem does this PR solve?
remove parse_id
Issue Number: close #xxx
Related PR: #55057
Problem Summary:
Remove
parse_id, as this method modifies the string. When using the same string, a second call to this method will fail.Following testing, from_hex and parse_id demonstrate identical behaviour.
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)