We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
char(int)
Is your feature request related to a problem? Please describe.
char(expr) Returns the ASCII character having the binary equivalent to expr. If n is larger than 256 the result is equivalent to chr(n % 256)
Examples:
> SELECT char(65); A
https://spark.apache.org/docs/2.3.0/api/sql/#char
Describe the solution you'd like
We do provide a built-in function development guide for you. Please check OpenMLDB Build-In Function Develop Guide or the Chinese version for help.
Please make sure you:
void DefaultUdfLibrary::IniStringUdf()
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
I want to help this, plz assign it to me. WeOpen Star. @lumianph
Sorry, something went wrong.
feat: built-in-function: support char(int) function #817 (#1896)
c512a82
Ivyee17
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
char(expr)
Returns the ASCII character having the binary equivalent to expr. If n is larger than 256 the result is equivalent to chr(n % 256)
Examples:
Reference:
https://spark.apache.org/docs/2.3.0/api/sql/#char
Describe the solution you'd like
We do provide a built-in function development guide for you.
Please check OpenMLDB Build-In Function Develop Guide or the Chinese version for help.
Please make sure you:
void DefaultUdfLibrary::IniStringUdf()
in src/udf/default_udf_library.cc.Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: