Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::functions_array::array_has - Rust
[go: Go Back, main page]

Module array_has

Source
Available on crate feature nested_expressions only.
Expand description

ScalarUDFImpl definitions for array_has, array_has_all and array_has_any functions.

Structs§

ArrayHas
ArrayHasAll
ArrayHasAny

Functions§

array_has
returns true, if the element appears in the first array, otherwise false.
array_has_all
returns true if each element of the second array appears in the first array; otherwise, it returns false.
array_has_all_udf
ScalarFunction that returns a ScalarUDF for ArrayHasAll
array_has_any
returns true if at least one element of the second array appears in the first array; otherwise, it returns false.
array_has_any_udf
ScalarFunction that returns a ScalarUDF for ArrayHasAny
array_has_udf
ScalarFunction that returns a ScalarUDF for ArrayHas