Closed
Description
Is your feature request related to a problem or challenge?
Required to allow transformations the produce complex structured data
Describe the solution you'd like
Allow structs and array within a struct expression
Describe alternatives you've considered
No response
Additional context
Currently, only primitive types are supported:
/// Currently supported types by the struct function.
pub static SUPPORTED_STRUCT_TYPES: &[DataType] = &[
DataType::Boolean,
DataType::UInt8,
DataType::UInt16,
DataType::UInt32,
DataType::UInt64,
DataType::Int8,
DataType::Int16,
DataType::Int32,
DataType::Int64,
DataType::Float32,
DataType::Float64,
DataType::Utf8,
DataType::LargeUtf8,
];