make_array
make_array([expr: storable]*) -> generic array
Returns an array constructed from zero, one or more input arguments. The arguments do not all need to be of the same type.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col arr:make_array()
Make a new column 'arr' consisting of an empty array.
make_col arr:make_array(1, "hello", true)
Make a new column 'arr' consisting of an array with three elements.
Updated 8 days ago