Uh oh!
There was an error while loading. Please reload this page.
[fix](csv_reader)Fixed bug when parsing multi-character delimiters. - #24572
Conversation
hubgeter
commented
Sep 18, 2023
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Sep 18, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Sep 18, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
108bfb3 to
5e47b96Comparehubgeter
commented
Sep 18, 2023
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Sep 18, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Sep 18, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
PR approved by anyone and no changes requested. |
5e47b96 to
adfae23Compareclang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Sep 19, 2023
TeamCity be ut coverage result: |
morningman
commented
Sep 19, 2023
run buildall |
PR approved by at least one committer and no changes requested. |
doris-robot
commented
Sep 19, 2023
TeamCity be ut coverage result: |
adfae23 to
942928cComparehubgeter
commented
Sep 20, 2023
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Sep 20, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Sep 20, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
…pache#24572) Fixed bug when parsing multi-character delimiters.
…24572) Fixed bug when parsing multi-character delimiters.
Proposed changes
Fixed bug when parsing multi-character delimiters.
example:
column_separator : "xx"
data.csv : data1xxxxdata2
Parse incorrectly:
data1[xx]xxdata2
data1x[xx]xdata2
data1xx[xx]data2
The string "xxxx" is parsed into three "xx" delimiters.
Parse correctly:
data1[xx]xxdata2
data1xx[xx]data2
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...