Packages

sealed abstract class Filter extends AnyRef

A filter predicate for data sources. Mapping between Spark SQL types and filter value types follow the convention for return type of org.apache.spark.sql.Row#get(int).

Annotations
@Stable()
Source
filters.scala
Since

1.3.0

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Filter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def references: Array[String]

    List of columns that are referenced by this filter.

    List of columns that are referenced by this filter.

    Note that, each element in references represents a column; dots are used as separators for nested columns. If any part of the names contains dots, it is quoted to avoid confusion.

    Since

    2.1.0

Concrete Value Members

  1. def v2references: Array[Array[String]]

    List of columns that are referenced by this filter.

    List of columns that are referenced by this filter.

    returns

    each element is a column name as an array of string multi-identifier

    Since

    3.0.0