Uh oh!
There was an error while loading. Please reload this page.
[fix](function) fix error result in split_by_string with utf8 chars - #40710
Conversation
doris-robot
commented
Sep 12, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Mryange
commented
Sep 12, 2024
run buildall |
doris-robot
commented
Sep 12, 2024
TPC-H: Total hot run time: 40195 ms |
doris-robot
commented
Sep 12, 2024
TeamCity be ut coverage result: |
doris-robot
commented
Sep 12, 2024
TPC-DS: Total hot run time: 194681 ms |
doris-robot
commented
Sep 12, 2024
ClickBench: Total hot run time: 31.18 s |
Mryange
commented
Sep 14, 2024
run buildall |
doris-robot
commented
Sep 14, 2024
TeamCity be ut coverage result: |
doris-robot
commented
Sep 14, 2024
TPC-H: Total hot run time: 42634 ms |
doris-robot
commented
Sep 14, 2024
TPC-DS: Total hot run time: 199937 ms |
doris-robot
commented
Sep 14, 2024
ClickBench: Total hot run time: 30.95 s |
Uh oh!
There was an error while loading. Please reload this page.
4d09fdb to
8251f74CompareMryange
commented
Sep 18, 2024
run buildall |
doris-robot
commented
Sep 18, 2024
TeamCity be ut coverage result: |
doris-robot
commented
Sep 18, 2024
TPC-H: Total hot run time: 41605 ms |
doris-robot
commented
Sep 18, 2024
TPC-DS: Total hot run time: 199234 ms |
doris-robot
commented
Sep 18, 2024
ClickBench: Total hot run time: 32.46 s |
8251f74 to
0baf480CompareMryange
commented
Sep 18, 2024
run buildall |
doris-robot
commented
Sep 18, 2024
TPC-H: Total hot run time: 41673 ms |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
doris-robot
commented
Sep 18, 2024
TPC-DS: Total hot run time: 194326 ms |
doris-robot
commented
Sep 18, 2024
ClickBench: Total hot run time: 32.86 s |
doris-robot
commented
Sep 18, 2024
TeamCity be ut coverage result: |
…40710) ``` mysql []>select split_by_string('你a好b世c界',''); +-----------------------------------------------------------------------------+ | split_by_string('你a好b世c界', '') | +-----------------------------------------------------------------------------+ | ["�", "�", "�", "a", "�", "�", "�", "b", "�", "�", "�", "c", "�", "�", "�"] | +-----------------------------------------------------------------------------+ 1 row in set (0.03 sec) now mysql []>select split_by_string('你a好b世c界',''); +---------------------------------------------+ | split_by_string('你a好b世c界', '') | +---------------------------------------------+ | ["你", "a", "好", "b", "世", "c", "界"] | +---------------------------------------------+ ```
…40710) ``` mysql []>select split_by_string('你a好b世c界',''); +-----------------------------------------------------------------------------+ | split_by_string('你a好b世c界', '') | +-----------------------------------------------------------------------------+ | ["�", "�", "�", "a", "�", "�", "�", "b", "�", "�", "�", "c", "�", "�", "�"] | +-----------------------------------------------------------------------------+ 1 row in set (0.03 sec) now mysql []>select split_by_string('你a好b世c界',''); +---------------------------------------------+ | split_by_string('你a好b世c界', '') | +---------------------------------------------+ | ["你", "a", "好", "b", "世", "c", "界"] | +---------------------------------------------+ ```
…pache#40710) ``` mysql []>select split_by_string('你a好b世c界',''); +-----------------------------------------------------------------------------+ | split_by_string('你a好b世c界', '') | +-----------------------------------------------------------------------------+ | ["�", "�", "�", "a", "�", "�", "�", "b", "�", "�", "�", "c", "�", "�", "�"] | +-----------------------------------------------------------------------------+ 1 row in set (0.03 sec) now mysql []>select split_by_string('你a好b世c界',''); +---------------------------------------------+ | split_by_string('你a好b世c界', '') | +---------------------------------------------+ | ["你", "a", "好", "b", "世", "c", "界"] | +---------------------------------------------+ ```
Proposed changes