Class

org.apache.spark.sql.catalyst.expressions

EquivalentExpressions

Related Doc: package expressions

Permalink

class EquivalentExpressions extends AnyRef

This class is used to compute equality of (sub)expression trees. Expressions can be added to this class and they subsequently query for expression equality. Expression trees are considered equal if for the same input(s), the same result is produced.

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

Instance Constructors

  1. new EquivalentExpressions()

    Permalink

Type Members

  1. case class Expr(e: Expression) extends Product with Serializable

    Permalink

    Wrapper around an Expression that provides semantic equality.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addExpr(expr: Expression): Boolean

    Permalink

    Adds each expression to this data structure, grouping them with existing equivalent expressions.

    Adds each expression to this data structure, grouping them with existing equivalent expressions. Non-recursive. Returns true if there was already a matching expression.

  5. def addExprTree(root: Expression, ignoreLeaf: Boolean = true, skipReferenceToExpressions: Boolean = true): Unit

    Permalink

    Adds the expression to this data structure recursively.

    Adds the expression to this data structure recursively. Stops if a matching expression is found. That is, if expr has already been added, its children are not added. If ignoreLeaf is true, leaf nodes are ignored.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def debugString(all: Boolean = false): String

    Permalink

    Returns the state of the data structure as a string.

    Returns the state of the data structure as a string. If all is false, skips sets of equivalent expressions with cardinality 1.

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def getAllEquivalentExprs: Seq[Seq[Expression]]

    Permalink

    Returns all the equivalent sets of expressions.

  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getEquivalentExprs(e: Expression): Seq[Expression]

    Permalink

    Returns all of the expression trees that are equivalent to e.

    Returns all of the expression trees that are equivalent to e. Returns an empty collection if there are none.

  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped