ksql icon indicating copy to clipboard operation
ksql copied to clipboard

Add support for Object in Udfs

Open agavra opened this issue 6 years ago • 1 comments

Udfs should be able to support signatures with Object as a parameter that will match anything. This is similar to generics, but does not enforce any specific type across objects. This can be helpful to implement something like TO_STRING(Object val).

agavra avatar Sep 25 '19 21:09 agavra

Yep - Object should be like an ANY SQL type

We should also support Object varargs.

Matching rules should mean that Object is only matched if nothing else matches. Where we have methods that contain different amount of Object params, the most specific should be matched.

big-andy-coates avatar Oct 08 '19 15:10 big-andy-coates