org.apache.spark.sql.execution.local

LeafLocalNode

abstract class LeafLocalNode extends LocalNode

Linear Supertypes
LocalNode, Logging, QueryPlan[LocalNode], TreeNode[LocalNode], Product, Equals, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LeafLocalNode
  2. LocalNode
  3. Logging
  4. QueryPlan
  5. TreeNode
  6. Product
  7. Equals
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LeafLocalNode(conf: SQLConf)

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Definition Classes
    Equals
  2. abstract def close(): Unit

    Closes the iterator and releases all resources.

    Closes the iterator and releases all resources. It should be idempotent.

    Implementations of this must also call the close() function of its children.

    Definition Classes
    LocalNode
  3. abstract def fetch(): InternalRow

    Returns the current tuple.

    Returns the current tuple.

    Definition Classes
    LocalNode
  4. abstract def next(): Boolean

    Advances the iterator to the next tuple.

    Advances the iterator to the next tuple. Returns true if there is at least one more tuple.

    Definition Classes
    LocalNode
  5. abstract def open(): Unit

    Initializes the iterator state.

    Initializes the iterator state. Must be called before calling next().

    Implementations of this must also call the open() function of its children.

    Definition Classes
    LocalNode
  6. abstract def output: Seq[Attribute]

    Definition Classes
    QueryPlan
  7. abstract def productArity: Int

    Definition Classes
    Product
  8. abstract def productElement(n: Int): Any

    Definition Classes
    Product

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply(number: Int): LocalNode

    Definition Classes
    TreeNode
  7. def argString: String

    Definition Classes
    TreeNode
  8. def asCode: String

    Definition Classes
    TreeNode
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. final def asIterator: Iterator[InternalRow]

    Returns the content through the Iterator interface.

    Returns the content through the Iterator interface.

    Definition Classes
    LocalNode
  11. def canProcessSafeRows: Boolean

    Specifies whether this operator is capable of processing Java-object-based Rows (i.

    Specifies whether this operator is capable of processing Java-object-based Rows (i.e. rows that are not UnsafeRows).

    Definition Classes
    LocalNode
  12. def canProcessUnsafeRows: Boolean

    Specifies whether this operator is capable of processing UnsafeRows

    Specifies whether this operator is capable of processing UnsafeRows

    Definition Classes
    LocalNode
  13. def children: Seq[LocalNode]

    Definition Classes
    LeafLocalNode → TreeNode
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def collect(): Seq[Row]

    Returns the content of the iterator from the beginning to the end in the form of a Scala Seq.

    Returns the content of the iterator from the beginning to the end in the form of a Scala Seq.

    Definition Classes
    LocalNode
  16. def collect[B](pf: PartialFunction[LocalNode, B]): Seq[B]

    Definition Classes
    TreeNode
  17. def collectFirst[B](pf: PartialFunction[LocalNode, B]): Option[B]

    Definition Classes
    TreeNode
  18. lazy val containsChild: Set[TreeNode[_]]

    Definition Classes
    TreeNode
  19. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  21. def expressions: Seq[Expression]

    Definition Classes
    QueryPlan
  22. def fastEquals(other: TreeNode[_]): Boolean

    Definition Classes
    TreeNode
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def find(f: (LocalNode) ⇒ Boolean): Option[LocalNode]

    Definition Classes
    TreeNode
  25. def flatMap[A](f: (LocalNode) ⇒ TraversableOnce[A]): Seq[A]

    Definition Classes
    TreeNode
  26. def foreach(f: (LocalNode) ⇒ Unit): Unit

    Definition Classes
    TreeNode
  27. def foreachUp(f: (LocalNode) ⇒ Unit): Unit

    Definition Classes
    TreeNode
  28. def generateTreeString(depth: Int, lastChildren: Seq[Boolean], builder: StringBuilder): StringBuilder

    Attributes
    protected
    Definition Classes
    TreeNode
  29. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  30. def getNodeNumbered(number: MutableInt): LocalNode

    Attributes
    protected
    Definition Classes
    TreeNode
  31. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  32. def inputSet: AttributeSet

    Definition Classes
    QueryPlan
  33. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  34. def isTraceEnabled(): Boolean

    Attributes
    protected
    Definition Classes
    Logging
  35. def jsonFields: List[(String, JValue)]

    Attributes
    protected
    Definition Classes
    TreeNode
  36. def log: Logger

    Attributes
    protected
    Definition Classes
    Logging
  37. def logDebug(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  38. def logDebug(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  39. def logError(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  40. def logError(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  41. def logInfo(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  42. def logInfo(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  43. def logName: String

    Attributes
    protected
    Definition Classes
    Logging
  44. def logTrace(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  45. def logTrace(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  46. def logWarning(msg: ⇒ String, throwable: Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  47. def logWarning(msg: ⇒ String): Unit

    Attributes
    protected
    Definition Classes
    Logging
  48. def makeCopy(newArgs: Array[AnyRef]): LocalNode

    Definition Classes
    TreeNode
  49. def map[A](f: (LocalNode) ⇒ A): Seq[A]

    Definition Classes
    TreeNode
  50. def mapChildren(f: (LocalNode) ⇒ LocalNode): LocalNode

    Definition Classes
    TreeNode
  51. def missingInput: AttributeSet

    Definition Classes
    QueryPlan
  52. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  53. def newMutableProjection(expressions: Seq[Expression], inputSchema: Seq[Attribute]): () ⇒ MutableProjection

    Attributes
    protected
    Definition Classes
    LocalNode
  54. def newPredicate(expression: Expression, inputSchema: Seq[Attribute]): (InternalRow) ⇒ Boolean

    Attributes
    protected
    Definition Classes
    LocalNode
  55. def newProjection(expressions: Seq[Expression], inputSchema: Seq[Attribute]): Projection

    Attributes
    protected
    Definition Classes
    LocalNode
  56. def nodeName: String

    Definition Classes
    TreeNode
  57. final def notify(): Unit

    Definition Classes
    AnyRef
  58. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  59. def numberedTreeString: String

    Definition Classes
    TreeNode
  60. val origin: Origin

    Definition Classes
    TreeNode
  61. def otherCopyArgs: Seq[AnyRef]

    Attributes
    protected
    Definition Classes
    TreeNode
  62. def outputSet: AttributeSet

    Definition Classes
    QueryPlan
  63. def outputsUnsafeRows: Boolean

    Specifies whether this operator outputs UnsafeRows

    Specifies whether this operator outputs UnsafeRows

    Definition Classes
    LocalNode
  64. def prepare(): Unit

    Called before open().

    Called before open(). Prepare can be used to reserve memory needed. It must NOT consume any input data.

    Implementations of this must also call the prepare() function of its children.

    Definition Classes
    LocalNode
  65. def prettyJson: String

    Definition Classes
    TreeNode
  66. def printSchema(): Unit

    Definition Classes
    QueryPlan
  67. def productIterator: Iterator[Any]

    Definition Classes
    Product
  68. def productPrefix: String

    Definition Classes
    Product
  69. def references: AttributeSet

    Definition Classes
    QueryPlan
  70. lazy val schema: StructType

    Definition Classes
    QueryPlan
  71. def schemaString: String

    Definition Classes
    QueryPlan
  72. def simpleString: String

    Definition Classes
    QueryPlan → TreeNode
  73. def statePrefix: String

    Attributes
    protected
    Definition Classes
    QueryPlan
  74. def stringArgs: Iterator[Any]

    Attributes
    protected
    Definition Classes
    TreeNode
  75. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  76. def toJSON: String

    Definition Classes
    TreeNode
  77. def toString(): String

    Definition Classes
    TreeNode → AnyRef → Any
  78. def transform(rule: PartialFunction[LocalNode, LocalNode]): LocalNode

    Definition Classes
    TreeNode
  79. def transformAllExpressions(rule: PartialFunction[Expression, Expression]): LeafLocalNode.this.type

    Definition Classes
    QueryPlan
  80. def transformChildren(rule: PartialFunction[LocalNode, LocalNode], nextOperation: (LocalNode, PartialFunction[LocalNode, LocalNode]) ⇒ LocalNode): LocalNode

    Attributes
    protected
    Definition Classes
    TreeNode
  81. def transformDown(rule: PartialFunction[LocalNode, LocalNode]): LocalNode

    Definition Classes
    TreeNode
  82. def transformExpressions(rule: PartialFunction[Expression, Expression]): LeafLocalNode.this.type

    Definition Classes
    QueryPlan
  83. def transformExpressionsDown(rule: PartialFunction[Expression, Expression]): LeafLocalNode.this.type

    Definition Classes
    QueryPlan
  84. def transformExpressionsUp(rule: PartialFunction[Expression, Expression]): LeafLocalNode.this.type

    Definition Classes
    QueryPlan
  85. def transformUp(rule: PartialFunction[LocalNode, LocalNode]): LocalNode

    Definition Classes
    TreeNode
  86. def treeString: String

    Definition Classes
    TreeNode
  87. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  90. def withNewChildren(newChildren: Seq[LocalNode]): LocalNode

    Definition Classes
    TreeNode

Inherited from LocalNode

Inherited from Logging

Inherited from QueryPlan[LocalNode]

Inherited from TreeNode[LocalNode]

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped