datafusion_functions_nested::string

Function string_to_array_inner

Source
pub fn string_to_array_inner<T: OffsetSizeTrait>(
    args: &[ArrayRef],
) -> Result<ArrayRef>
Expand description

String_to_array SQL function Splits string at occurrences of delimiter and returns an array of parts string_to_array(‘abc~@def@ghi’, ‘@~’) = ‘[“abc”, “def”, “ghi”]’