Expand description
ScalarUDFImpl definitions for array_union, array_intersect and array_distinct functions.
Structsยง
- Array
Distinct ๐ - Array
Intersect ๐ - Array
Union
Enumsยง
- SetOp ๐
Functionsยง
- array_
distinct - returns distinct values from the array after removing duplicates.
- array_
distinct_ ๐inner - array_distinct SQL function example: from list [1, 3, 2, 3, 1, 2, 4] to [1, 2, 3, 4]
- array_
distinct_ udf - ScalarFunction that returns a
ScalarUDFfor ArrayDistinct - array_
intersect - returns an array of the elements in the intersection of array1 and array2.
- array_
intersect_ ๐inner - array_intersect SQL function
- array_
intersect_ udf - ScalarFunction that returns a
ScalarUDFfor ArrayIntersect - array_
union - returns an array of the elements in the union of array1 and array2 without duplicates.
- array_
union_ ๐inner - Array_union SQL function
- array_
union_ udf - ScalarFunction that returns a
ScalarUDFfor ArrayUnion - general_
array_ ๐distinct - general_
set_ ๐op - generic_
set_ ๐lists