Uh oh!
There was an error while loading. Please reload this page.
[fix](schema change) fix delete predicate incorrect comparisons result with empty strings during schema change - #41064
Conversation
…t with empty strings during schema change
doris-robot
commented
Sep 20, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
luwei16
commented
Sep 20, 2024
run buildall |
doris-robot
commented
Sep 20, 2024
TeamCity be ut coverage result: |
dataroaring
commented
Sep 21, 2024
run buildall |
doris-robot
commented
Sep 21, 2024
TeamCity be ut coverage result: |
There was a problem hiding this comment.
no need to add an empty file, just use result = sql """ to check result.
| time 600 | ||
| } | ||
| qt_select "select * from ${tableName}" |
There was a problem hiding this comment.
use result = sql """ to get rid of empty .out file.
luwei16
commented
Sep 24, 2024
run p0 |
luwei16
commented
Sep 25, 2024
run buildall |
doris-robot
commented
Sep 25, 2024
TeamCity be ut coverage result: |
luwei16
commented
Sep 25, 2024
run cloud_p0 |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
…t with empty strings during schema change (#41064) ### problem ``` insert into t1 (k1, k2, v1) value(1, '', 2); delete form t1 where k1 = 1 and k2 = ''; alter table modify column v1 string select * from t1 // expect 0 rows in return, but get 1 row. ```
…t with empty strings during schema change (apache#41064) ``` insert into t1 (k1, k2, v1) value(1, '', 2); delete form t1 where k1 = 1 and k2 = ''; alter table modify column v1 string select * from t1 // expect 0 rows in return, but get 1 row. ```
…t with empty strings during schema change (apache#41064) ### problem ``` insert into t1 (k1, k2, v1) value(1, '', 2); delete form t1 where k1 = 1 and k2 = ''; alter table modify column v1 string select * from t1 // expect 0 rows in return, but get 1 row. ```
problem