public class Or extends Filter implements scala.Product, scala.Serializable
true iff at least one of left or right evaluates to true.
 | Modifier and Type | Method and Description | 
|---|---|
| abstract static R | apply(T1 v1,
     T2 v2) | 
| Filter | left() | 
| String[] | references()List of columns that are referenced by this filter. | 
| Filter | right() | 
| static String | toString() | 
| org.apache.spark.sql.connector.expressions.filter.Predicate | toV2()Converts V1 filter to V2 filter | 
v2referencesequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitpublic abstract static R apply(T1 v1,
                               T2 v2)
public static String toString()
public Filter left()
public Filter right()
public String[] references()
Filter
 Note that, each element in references represents a column. The column name follows ANSI SQL
 names and identifiers: dots are used as separators for nested columns, name will be quoted if
 it contains special chars.
 
references in class Filterpublic org.apache.spark.sql.connector.expressions.filter.Predicate toV2()
Filter