Hi everyone,

I wrote a small proposal to add a 'specific name' to the UDF spec.  It is a
SQL language feature to add a human-readable unique string to identify an
overload of a function.

A specific name is an identifier that uniquely identifies a routine within
> a schema.


> CREATE FUNCTION add_one(i INTEGER)
> RETURNS INTEGER
> SPECIFIC add_one_int
> RETURN i + 1;


DROP SPECIFIC FUNCTION area_circle;


The PR is here: https://github.com/apache/iceberg/pull/16727, there is some
discussion already there.  Please let me know if you have some thoughts.

Thanks!
Szehon

Reply via email to