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
Add support for UDF calls like:
SELECT sample_simple(id, user_name, page_visits, 20) EMITS (id INT, user_name VARCHAR(100), PAGE_VISITS int) FROM people;
In contrast to a normal function an UDF needs the EMITS clause with a DDL of the result columns.
EMITS
The text was updated successfully, but these errors were encountered:
#74: added support for udf functions
593b863
#74: fixed review findings
3154da8
ca3d7e5
#74: added info about udf to user guide
4501a8f
Feature/74 add support for udf functions (#75)
7bf4750
* #74: added support for udf
AnastasiiaSergienko
Successfully merging a pull request may close this issue.
Add support for UDF calls like:
In contrast to a normal function an UDF needs the
EMITS
clause with a DDL of the result columns.The text was updated successfully, but these errors were encountered: