Scalar Functions
Struct functions
Scalar functions for manipulating structs
Arroyo’s Scalar function implementations are based on Apache DataFusion and these docs are derived from the DataFusion function reference.
struct
Returns an Arrow struct using the specified input expressions.
Fields in the returned struct use the cN
naming convention.
For example: c0
, c1
, c2
, etc.
For example, this query converts two columns a
and b
to a single column with
a struct type of fields c0
and c1
:
Arguments
- expression_n: Expression to include in the output struct. Can be a constant, column, or function, and any combination of arithmetic or string operators.