Functions.ArraysOverlap(Column, Column) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns true if a1
and a2
have at least one non-null element in common.
If not and both arrays are non-empty and any of them contains a null,
it returns null. It returns false otherwise.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArraysOverlap(Microsoft.Spark.Sql.Column a1, Microsoft.Spark.Sql.Column a2);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArraysOverlap : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function ArraysOverlap (a1 As Column, a2 As Column) As Column
Parameters
- a1
- Column
Left side array
- a2
- Column
Right side array
Returns
Column object
- Attributes