exasol/sql-statement-builder

Add support for UDFs

Closed this issue · 0 comments

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.