Uh oh!
There was an error while loading. Please reload this page.
[fix](meta) Disable infer expr column name when query on old optimizer - #25317
Conversation
JingDas
commented
Oct 11, 2023
run buildall |
JingDas
commented
Oct 11, 2023
run buildall |
JingDas
commented
Oct 12, 2023
run buildall |
doris-robot
commented
Oct 12, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
JingDas
commented
Oct 12, 2023
run buildall |
JingDas
commented
Oct 12, 2023
run buildall |
doris-robot
commented
Oct 12, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
doris-robot
commented
Oct 12, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
JingDas
commented
Oct 12, 2023
run buildall |
doris-robot
commented
Oct 12, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
JingDas
commented
Oct 13, 2023
run buildall |
doris-robot
commented
Oct 13, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
morrySnow
commented
Oct 16, 2023
run buildall |
doris-robot
commented
Oct 16, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
…izer (apache#25317) Disable infer expr column name when query on old optimizer. This bug is be brought in apache#24990 if your query SQL is select id, name, sum(target) FROM db_test.table_test2 group by id, name; the result column name when query is as following: |id|name |sum(cast(target as DOUBLE))| when you create view as following: CREATE VIEW v1 as select id, name, sum(target) FROM db_test.table_test2 group by id, name; then query the view v1, the result is as following: |id|name |__sum_2|
…izer (apache#25317) Disable infer expr column name when query on old optimizer. This bug is be brought in apache#24990 if your query SQL is select id, name, sum(target) FROM db_test.table_test2 group by id, name; the result column name when query is as following: |id|name |sum(cast(target as DOUBLE))| when you create view as following: CREATE VIEW v1 as select id, name, sum(target) FROM db_test.table_test2 group by id, name; then query the view v1, the result is as following: |id|name |__sum_2|
Proposed changes
Disable infer expr column name when query on old optimizer.
This bug is be brought in #24990
Further comments
if your query SQL is
select id, name, sum(target) FROM db_test.table_test2 group by id, name;the result column name when query is as following:
id|name |sum(cast(target as DOUBLE))|when you create view as following:
CREATE VIEW v1 as select id, name, sum(target) FROM db_test.table_test2 group by id, name;then query the view v1, the result is as following:
id|name |__sum_2|