Expand description
ScalarUDFImpl
definitions for array_to_string and string_to_array functions.
Functions§
- array_
to_ string - converts each element to its text representation.
- array_
to_ string_ udf - ScalarFunction that returns a
ScalarUDF
for [$UDF
] - string_
to_ array - splits a
string
based on adelimiter
and returns an array of parts. Any parts matching the optionalnull_string
will be replaced withNULL
- string_
to_ array_ inner - 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”]’ - string_
to_ array_ udf - ScalarFunction that returns a
ScalarUDF
for [$UDF
]