Uh oh!
There was an error while loading. Please reload this page.
[fix](be) Adapt nullable column unnesting to new interface - #66474
Merged
Conversation
hello-stephen
commented
Aug 5, 2026
Contributor
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
linrrzqqq
commented
Aug 5, 2026
CollaboratorAuthor
run buildall |
shuke987
commented
Aug 5, 2026
Contributor
skip buildall |
morningman
approved these changes
Aug 5, 2026
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
Uh oh!
There was an error while loading. Please reload this page.
hello-stephen
commented
Aug 5, 2026
Contributor
TPC-H: Total hot run time: 29137 ms |
hello-stephen
commented
Aug 5, 2026
Contributor
TPC-DS: Total hot run time: 166363 ms |
hello-stephen
commented
Aug 5, 2026
Contributor
ClickBench: Total hot run time: 23.93 s |
wyxxxcat pushed a commit
to wyxxxcat/doris
that referenced
this pull request
Aug 17, 2026
) Related PR: conflict between apache#66242 and apache#66031 Problem Summary: fix be compile: ```text In file included from ../src/exprs/function/ai/ai_functions.cpp:19: In file included from ../src/exprs/function/ai/ai_classify.h:20: ../src/exprs/function/ai/ai_functions.h:312:66: error: too few arguments to function call, expected 2, have 0 312 | prompt_columns.emplace_back(argument.unnest_nullable().column); | ~~~~~~~~~~~~~~~~~~~~~~~~ ^ ../src/core/block/column_with_type_and_name.h:86:27: note: 'unnest_nullable' declared here 86 | ColumnWithTypeAndName unnest_nullable(const NullableColumnInfo& info, | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 87 | bool replace_null_data_to_default) const; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ../src/exprs/function/ai/ai_functions.cpp:29: ../src/exprs/function/ai/embed.h:74:56: error: too few arguments to function call, expected 2, have 0 74 | ColumnPtr input_column = input.unnest_nullable().column; | ~~~~~~~~~~~~~~~~~~~~~ ^ ../src/core/block/column_with_type_and_name.h:86:27: note: 'unnest_nullable' declared here 86 | ColumnWithTypeAndName unnest_nullable(const NullableColumnInfo& info, | ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 87 | bool replace_null_data_to_default) const; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 errors generated. ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related PR: conflict between #66242 and #66031
Problem Summary:
fix be compile: