Generic function to apply any scalar function on an MV column
Currently, scalar functions supports only Single valued column. Need generic function to apply any scalar function on an MV column
Hi @nairDev25, scalar functions can be applied to MV column right now, although it requires certain type of input value. See ArrayFunctions for some example scalar functions that apply to MV column.
Do you encounter some issue when trying to apply a scalar function to a MV column?
Hi @Jackie-Jiang , We need to run function like lower(mv_column), currently its failing
If we add String[] lower(String[] input) as a scalar function in StringFunctions, it should work. Do you want to help contribute this?