case class ValueListClause(col: String, values: Literal, negated: Boolean) extends Clause with Product with Serializable
Represents an abstract value list clause
- col
the column on which the clause is applied
- values
literal of type array with values representing the value list from the query
- negated
if true the clause is used to check whether the value list contain values which are different from all of the values in the list (used for inequality checks) if false the clause is used to check whether the value list metadata contain all of the values in the list (used for equality checks)
- Alphabetic
- By Inheritance
- ValueListClause
- Serializable
- Serializable
- Product
- Equals
- Clause
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
ValueListClause(col: String, values: Literal, negated: Boolean)
- col
the column on which the clause is applied
- values
literal of type array with values representing the value list from the query
- negated
if true the clause is used to check whether the value list contain values which are different from all of the values in the list (used for inequality checks) if false the clause is used to check whether the value list metadata contain all of the values in the list (used for equality checks)