trait LogicalPlan extends TreeNode[LogicalPlan] with Product with SQLSig

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LogicalPlan
  2. SQLSig
  3. Product
  4. Equals
  5. TreeNode
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  2. abstract def children: Seq[LogicalPlan]

    All child nodes of this plan node

    All child nodes of this plan node

    Definition Classes
    LogicalPlanTreeNode
  3. abstract def inputAttributes: Seq[Attribute]
  4. abstract def nodeLocation: Option[NodeLocation]

    returns

    the code location in the SQL text if available

    Definition Classes
    TreeNode
  5. abstract def outputAttributes: Seq[Attribute]
  6. abstract def productArity: Int
    Definition Classes
    Product
  7. abstract def productElement(n: Int): Any
    Definition Classes
    Product
  8. abstract def sig(config: QuerySignatureConfig = QuerySignatureConfig()): String
    Definition Classes
    SQLSig

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def collectExpressions(cond: PartialFunction[Expression, Boolean]): List[Expression]

    Collect from all input expressions and report matching expressions

  7. def copyInstance(newArgs: Seq[AnyRef]): LogicalPlan.this.type
    Attributes
    protected
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def expressions: Seq[Expression]

    Expressions associated to this LogicalPlan node

  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def inputExpressions: List[Expression]

    List all input expressions to the plan

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def mapChildren(f: (LogicalPlan) => LogicalPlan): LogicalPlan
  16. def modelName: String
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def pp: String
  21. def productElementName(n: Int): String
    Definition Classes
    Product
  22. def productElementNames: Iterator[String]
    Definition Classes
    Product
  23. def productIterator: Iterator[Any]
    Definition Classes
    Product
  24. def productPrefix: String
    Definition Classes
    Product
  25. lazy val resolved: Boolean
  26. def resolvedChildren: Boolean
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def transform(rule: PartialFunction[LogicalPlan, LogicalPlan]): LogicalPlan

    Iterate through LogicalPlans and apply matching rules for transformation.

    Iterate through LogicalPlans and apply matching rules for transformation. The transformation will be applied to the current node as well.

  30. def transformChildExpressions(rule: PartialFunction[Expression, Expression]): LogicalPlan

    Transform only child expressions

  31. def transformChildren(rule: PartialFunction[LogicalPlan, LogicalPlan]): LogicalPlan

    Transform child node only once

  32. def transformChildrenOnce(rule: PartialFunction[LogicalPlan, LogicalPlan]): LogicalPlan

    Apply transformOnce for all child nodes.

  33. def transformExpressions(rule: PartialFunction[Expression, Expression]): LogicalPlan

    Recursively transform all nested expressions

  34. def transformOnce(rule: PartialFunction[LogicalPlan, LogicalPlan]): LogicalPlan

    Traverse the tree until finding the nodes matching the pattern.

    Traverse the tree until finding the nodes matching the pattern. All nodes found from the root will be transformed, and no further recursive match will occur from the transformed nodes.

    If you want to continue the transformation for the child nodes, use transformChildren or transformChildrenOnce inside the rule.

  35. def transformUp(rule: PartialFunction[LogicalPlan, LogicalPlan]): LogicalPlan
  36. def transformUpExpressions(rule: PartialFunction[Expression, Expression]): LogicalPlan

    Depth-first transformation of expression

  37. def traverse[U](rule: PartialFunction[LogicalPlan, U]): Unit

    Recursively traverse plan nodes and apply the given function to LogicalPlan nodes

  38. def traverseChildren[U](rule: PartialFunction[LogicalPlan, U]): Unit

    Recursively traverse the child plan nodes and apply the given function to LogicalPlan nodes

  39. def traverseChildrenOnce[U](rule: PartialFunction[LogicalPlan, U]): Unit

    Recursively traverse the child plan nodes until the rule matches.

  40. def traverseExpressions[U](rule: PartialFunction[Expression, U]): Unit
  41. def traverseOnce[U](rule: PartialFunction[LogicalPlan, U]): Unit

    Recursively traverse the plan nodes until the rule matches.

  42. def unresolvedExpressions: Seq[Expression]
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from SQLSig

Inherited from Product

Inherited from Equals

Inherited from TreeNode[LogicalPlan]

Inherited from AnyRef

Inherited from Any

Ungrouped