Expand description
ScalarUDFImpl definitions for array_to_string and string_to_array functions.
Functions§
- converts each element to its text representation.
- ScalarFunction that returns a
ScalarUDFfor ArrayToString - splits a
stringbased on adelimiterand returns an array of parts. Any parts matching the optionalnull_stringwill be replaced withNULL - 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”]’ - ScalarFunction that returns a
ScalarUDFfor StringToArray