Uh oh!
There was an error while loading. Please reload this page.
[feature](function) support any type in SQL function - #18392
Merged
Conversation
5 tasks
xy720force-pushed
the
support-deduce-function-in-fe
branch
from
April 6, 2023 08:12
cf6524d to
1e6a8a5CompareContributor
clang-tidy review says "All clean, LGTM! 👍" |
xy720
commented
Apr 6, 2023
MemberAuthor
run buildall |
xy720force-pushed
the
support-deduce-function-in-fe
branch
from
April 7, 2023 05:00
c87bf42 to
bf61059Comparexy720
commented
Apr 7, 2023
MemberAuthor
run buildall |
xy720
commented
Apr 7, 2023
MemberAuthor
run p0 |
xy720force-pushed
the
support-deduce-function-in-fe
branch
from
April 7, 2023 10:28
bf61059 to
10dc471Comparexy720
commented
Apr 7, 2023
MemberAuthor
run buildall |
xy720force-pushed
the
support-deduce-function-in-fe
branch
from
April 11, 2023 04:28
10dc471 to
6f6f19cComparexy720
commented
Apr 11, 2023
MemberAuthor
run buildall |
xy720
commented
Apr 11, 2023
MemberAuthor
run compile |
xy720
commented
Apr 11, 2023
MemberAuthor
run p0 |
Contributor
PR approved by at least one committer and no changes requested. |
Contributor
PR approved by anyone and no changes requested. |
gnehil pushed a commit
to gnehil/doris
that referenced
this pull request
Apr 21, 2023
Add AnyType to Doris. Support Inference function in fe SQL function.
Reminiscent pushed a commit
to Reminiscent/doris
that referenced
this pull request
May 15, 2023
Add AnyType to Doris. Support Inference function in fe SQL function.
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.
Proposed changes
In #17344 , we support template and variadic template function.
e.g.
Then it raises a new issue, as some functions has unpredictable return type.
e.g.
This commit support
ANY_TYPE.If a function has
ANY_TYPEas return type, then this function is an inference function.e.g.
An inference function's return type will be analyze to actual type at runtime in FE.
Problem summary
Describe your changes.
Checklist(Required)
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...