sealed trait OptimizablePartitionExpression extends AnyRef
Defines rules to convert a data filter to a partition filter for a special generation expression of a partition column.
Note:
- This may be shared cross multiple SparkSessions, implementations should not store any
state (such as expressions) referring to a specific SparkSession.
- Partition columns may have different behaviors than data columns. For example, writing an empty
string to a partition column would become null (SPARK-24438). We need to pay attention to
these slight behavior differences and make sure applying the auto generated partition filters
would still return the same result as if they were not applied.
- Alphabetic
- By Inheritance
- OptimizablePartitionExpression
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equalTo(lit: Literal): Option[Expression]
Assume we have a partition column
part, and a data columncol.Assume we have a partition column
part, and a data columncol. Return a partition filter based onpartfor a data filtercol = lit. - def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def greaterThan(lit: Literal): Option[Expression]
Assume we have a partition column
part, and a data columncol.Assume we have a partition column
part, and a data columncol. Return a partition filter based onpartfor a data filtercol > lit. - def greaterThanOrEqual(lit: Literal): Option[Expression]
Assume we have a partition column
part, and a data columncol.Assume we have a partition column
part, and a data columncol. Return a partition filter based onpartfor a data filtercol >= lit. - def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNull(): Option[Expression]
Assume we have a partition column
part, and a data columncol.Assume we have a partition column
part, and a data columncol. Return a partition filter based onpartfor a data filtercol IS NULL. - def lessThan(lit: Literal): Option[Expression]
Assume we have a partition column
part, and a data columncol.Assume we have a partition column
part, and a data columncol. Return a partition filter based onpartfor a data filtercol < lit. - def lessThanOrEqual(lit: Literal): Option[Expression]
Assume we have a partition column
part, and a data columncol.Assume we have a partition column
part, and a data columncol. Return a partition filter based onpartfor a data filtercol <= lit. - final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()