case class CollatedGreaterThan(attribute: String, value: Any, dataType: DataType) extends CollatedFilter with Product with Serializable
Collation aware equivalent of GreaterThan.
- Annotations
- @Evolving()
- Source
- filters.scala
- Alphabetic
- By Inheritance
- CollatedGreaterThan
- Serializable
- Product
- Equals
- CollatedFilter
- Filter
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- val attribute: String
- def correspondingFilter: Filter
The corresponding non-collation aware filter.
The corresponding non-collation aware filter.
- Definition Classes
- CollatedGreaterThan → CollatedFilter
- val dataType: DataType
- Definition Classes
- CollatedGreaterThan → CollatedFilter
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- 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. 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.- Definition Classes
- CollatedFilter → Filter
- Since
2.1.0
- def toV2: Predicate
Converts V1 filter to V2 filter
Converts V1 filter to V2 filter
- Definition Classes
- CollatedFilter → Filter
- 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
- Definition Classes
- Filter
- Since
3.0.0
- val value: Any