exasol / sql-statement-builder

Build SQL statements safely without string concatenation
MIT License
25 stars 4 forks source link

Add support for UDFs #74

Closed jakobbraun closed 4 years ago

jakobbraun commented 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.