-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix] remove parse_id #57240
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
[fix] remove parse_id #57240
Conversation
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
ClickBench: Total hot run time: 28.3 s |
|
run beut |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run p0 |
|
run nonConcurrent |
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run p0 |
BE Regression && UT Coverage ReportIncrement line coverage Increment coverage report
|
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
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) ```
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) ```
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)