Packages

case class AllColumns(qualifier: Option[String], columns: Option[Seq[Attribute]], nodeLocation: Option[NodeLocation]) extends Attribute with LogSupport with Product with Serializable

Linear Supertypes
Attribute, LogSupport, LazyLogger, LoggingMethods, Serializable, LeafExpression, Expression, Product, Equals, TreeNode[Expression], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AllColumns
  2. Attribute
  3. LogSupport
  4. LazyLogger
  5. LoggingMethods
  6. Serializable
  7. LeafExpression
  8. Expression
  9. Product
  10. Equals
  11. TreeNode
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AllColumns(qualifier: Option[String], columns: Option[Seq[Attribute]], nodeLocation: Option[NodeLocation])

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. def alias: Option[String]
    Definition Classes
    Attribute
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def attributeName: String

    Column name without qualifier

    Column name without qualifier

    Definition Classes
    AttributeExpression
  7. def children: Seq[Expression]
    Definition Classes
    AllColumnsLeafExpressionTreeNode
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def collectExpressions(cond: PartialFunction[Expression, Boolean]): List[Expression]
    Definition Classes
    Expression
  10. def collectSubExpressions: List[Expression]
    Definition Classes
    Expression
  11. val columns: Option[Seq[Attribute]]
  12. def copyInstance(newArgs: Seq[AnyRef]): AllColumns.this.type
    Attributes
    protected
    Definition Classes
    Expression
  13. def dataType: DataType
    Definition Classes
    AllColumnsExpression
  14. def dataTypeName: String
    Definition Classes
    Expression
  15. macro def debug(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  16. macro def debug(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. macro def error(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  19. macro def error(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  20. def fullName: String
    Definition Classes
    Attribute
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. macro def info(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  23. macro def info(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  24. def inputColumns: Seq[Attribute]

    Return columns used for generating this attribute

    Return columns used for generating this attribute

    Definition Classes
    AllColumnsAttribute
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. macro def logAt(logLevel: LogLevel, message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  27. lazy val logger: Logger
    Attributes
    protected[this]
    Definition Classes
    LazyLogger
  28. def matched(columnPath: ColumnPath, context: AnalyzerContext): Option[Attribute]

    If a given column name matches with this Attribute, return this.

    If a given column name matches with this Attribute, return this. If there are multiple candidate attributes (e.g., via Join, Union), return MultiSourceAttribute.

    Definition Classes
    Attribute
  29. def matchesWith(columnPath: ColumnPath): Boolean

    Return true if this Attribute matches with a given column path

    Return true if this Attribute matches with a given column path

    Definition Classes
    Attribute
  30. def name: String
    Definition Classes
    AllColumnsAttribute
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. val nodeLocation: Option[NodeLocation]

    returns

    the code location in the SQL text if available

    Definition Classes
    AllColumnsTreeNode
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. def outputColumns: Seq[Attribute]

    Return columns generated from this attribute

    Return columns generated from this attribute

    Definition Classes
    AllColumnsAttribute
  36. def prefix: String
    Definition Classes
    Attribute
  37. def productElementNames: Iterator[String]
    Definition Classes
    Product
  38. val qualifier: Option[String]
    Definition Classes
    AllColumnsAttribute
  39. lazy val resolved: Boolean
    Definition Classes
    AllColumnsExpression
  40. def resolvedChildren: Boolean
    Definition Classes
    Expression
  41. def resolvedInputs: Boolean
    Definition Classes
    Expression
  42. def setQualifierIfEmpty(newQualifier: Option[String]): Attribute
    Definition Classes
    Attribute
  43. def sourceColumns: Seq[SourceColumn]

    Returns the unmodified source columns referenced by this Attribute

    Returns the unmodified source columns referenced by this Attribute

    Definition Classes
    AllColumnsAttribute
  44. def sqlExpr: String
    Definition Classes
    Expression
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AllColumns → AnyRef → Any
  47. macro def trace(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  48. macro def trace(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  49. def transformExpression(rule: PartialFunction[Expression, Expression]): Expression

    Recursively transform the expression in breadth-first order

    Recursively transform the expression in breadth-first order

    Definition Classes
    Expression
  50. def transformPlan(rule: PartialFunction[LogicalPlan, LogicalPlan]): Expression
    Definition Classes
    Expression
  51. def transformUpExpression(rule: PartialFunction[Expression, Expression]): Expression

    Recursively transform the expression in depth-first order

    Recursively transform the expression in depth-first order

    Definition Classes
    Expression
  52. def traverseExpressions[U](rule: PartialFunction[Expression, U]): Unit
    Definition Classes
    Expression
  53. def traversePlan[U](rule: PartialFunction[LogicalPlan, U]): Unit
    Definition Classes
    Expression
  54. def traversePlanOnce[U](rule: PartialFunction[LogicalPlan, U]): Unit
    Definition Classes
    Expression
  55. def typeDescription: String

    * Returns "(name):(type)" of this attribute

    * Returns "(name):(type)" of this attribute

    Definition Classes
    Expression
  56. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  57. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  58. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  59. macro def warn(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  60. macro def warn(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  61. def withAlias(newAlias: Option[String]): Attribute
    Definition Classes
    Attribute
  62. def withAlias(newAlias: String): Attribute
    Definition Classes
    Attribute
  63. def withQualifier(newQualifier: Option[String]): Attribute
    Definition Classes
    AllColumnsAttribute
  64. def withQualifier(newQualifier: String): Attribute
    Definition Classes
    Attribute

Deprecated Value Members

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

Inherited from Attribute

Inherited from LogSupport

Inherited from LazyLogger

Inherited from LoggingMethods

Inherited from Serializable

Inherited from LeafExpression

Inherited from Expression

Inherited from Product

Inherited from Equals

Inherited from TreeNode[Expression]

Inherited from AnyRef

Inherited from Any

Ungrouped