Function datafusion_functions_nested::string::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”]’