Closed jakobbraun closed 4 years ago
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
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.