Expand description
ScalarUDFImpl definitions for array_replace, array_replace_n and array_replace_all functions.
Structsยง
- Array
Replace - Array
Replace ๐All - Array
ReplaceN ๐
Functionsยง
- array_
replace - replaces the first occurrence of the specified element with another specified element.
- array_
replace_ all - replaces all occurrences of the specified element with another specified element.
- array_
replace_ ๐all_ inner - array_
replace_ all_ udf - ScalarFunction that returns a
ScalarUDFfor ArrayReplaceAll - array_
replace_ ๐inner - array_
replace_ n - replaces the first
maxoccurrences of the specified element with another specified element. - array_
replace_ ๐n_ inner - array_
replace_ n_ udf - ScalarFunction that returns a
ScalarUDFfor ArrayReplaceN - array_
replace_ udf - ScalarFunction that returns a
ScalarUDFfor ArrayReplace - general_
replace ๐ - For each element of
list_array[i], replaces up toarr_n[i]occurrences offrom_array[i],to_array[i].