-
Notifications
You must be signed in to change notification settings - Fork 755
New issue
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
SQL UDFs #3994
Comments
/assignme |
https://github.com/ClickHouse/ClickHouse/pull/23978/commits |
It looks like Scalar UDF in databend, we have implemented it: The purpose of this issue is to implement Tabular SQL UDFs. |
@BohuTANG @wangzhen11aaa Any other database open sourced support tabular function? |
I think this article will give you some idea, This is a very good example. |
I haven't seen yet, maybe have but it's not important for this issue :) |
BTW, databend already used tabular function: select * from numbers(10), it accepts an argument and returning blocks. |
Cool. Let me check it. |
|
Mostly the same. |
Thanks |
Update: |
@GrapeBaBa |
Hi, @GrapeBaBa How is this going? :) |
will do it. |
Databend already have the scalar UDFs:
A user-defined table functions can apply to a sql query and returns 0, 1 or multi-rows, each result contains 1 or more columns.
A snow style UDTFs:
Reference:
https://docs.snowflake.com/en/developer-guide/udf/sql/udf-sql-tabular-functions.html
The text was updated successfully, but these errors were encountered: