Packages

c

org.apache.spark.sql.catalyst.analysis.resolver

TimezoneAwareExpressionResolver

class TimezoneAwareExpressionResolver extends TreeNodeResolver[TimeZoneAwareExpression, Expression] with ResolvesExpressionChildren

Resolves TimeZoneAwareExpressions by applying the session's local timezone.

This class is responsible for resolving TimeZoneAwareExpressions by first resolving their children and then applying the session's local timezone. Additionally, ensures that any tags from the original expression are preserved during the resolution process.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TimezoneAwareExpressionResolver
  2. ResolvesExpressionChildren
  3. TreeNodeResolver
  4. QueryErrorsBase
  5. DataTypeErrorsBase
  6. SQLConfHelper
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TimezoneAwareExpressionResolver(expressionResolver: TreeNodeResolver[Expression, Expression])

    Creates a new TimezoneAwareExpressionResolver with the given expression resolver.

    Creates a new TimezoneAwareExpressionResolver with the given expression resolver.

    expressionResolver

    The ExpressionResolver used to resolve child expressions.

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]) @IntrinsicCandidate() @native()
  6. def conf: SQLConf

    The active config object within the current scope.

    The active config object within the current scope. See SQLConf.get for more information.

    Definition Classes
    SQLConfHelper
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. def getQueryContext(context: QueryContext): Array[QueryContext]
    Definition Classes
    DataTypeErrorsBase
  11. def getSummary(sqlContext: QueryContext): String
    Definition Classes
    DataTypeErrorsBase
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  17. def ordinalNumber(i: Int): String
    Definition Classes
    QueryErrorsBase
  18. def quoteByDefault(elem: String): String
    Attributes
    protected
    Definition Classes
    DataTypeErrorsBase
  19. def resolve(unresolvedTimezoneExpression: TimeZoneAwareExpression): Expression

    Resolves a TimeZoneAwareExpression by resolving its children and applying a timezone.

    Resolves a TimeZoneAwareExpression by resolving its children and applying a timezone.

    unresolvedTimezoneExpression

    The TimeZoneAwareExpression to resolve.

    returns

    A resolved Expression with the session's local timezone applied.

    Definition Classes
    TimezoneAwareExpressionResolverTreeNodeResolver
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toDSOption(option: String): String
    Definition Classes
    DataTypeErrorsBase
  22. def toSQLConf(conf: String): String
    Definition Classes
    DataTypeErrorsBase
  23. def toSQLConfVal(conf: String): String
    Definition Classes
    QueryErrorsBase
  24. def toSQLExpr(e: Expression): String
    Definition Classes
    QueryErrorsBase
  25. def toSQLId(parts: Seq[String]): String
    Definition Classes
    DataTypeErrorsBase
  26. def toSQLId(parts: String): String
    Definition Classes
    DataTypeErrorsBase
  27. def toSQLStmt(text: String): String
    Definition Classes
    DataTypeErrorsBase
  28. def toSQLType(t: AbstractDataType): String
    Definition Classes
    DataTypeErrorsBase
  29. def toSQLType(text: String): String
    Definition Classes
    DataTypeErrorsBase
  30. def toSQLValue(v: Any, t: DataType): String
    Definition Classes
    QueryErrorsBase
  31. def toSQLValue(value: Double): String
    Definition Classes
    DataTypeErrorsBase
  32. def toSQLValue(value: Float): String
    Definition Classes
    DataTypeErrorsBase
  33. def toSQLValue(value: Long): String
    Definition Classes
    DataTypeErrorsBase
  34. def toSQLValue(value: Int): String
    Definition Classes
    DataTypeErrorsBase
  35. def toSQLValue(value: Short): String
    Definition Classes
    DataTypeErrorsBase
  36. def toSQLValue(value: UTF8String): String
    Definition Classes
    DataTypeErrorsBase
  37. def toSQLValue(value: String): String
    Definition Classes
    DataTypeErrorsBase
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. def withResolvedChildren[ExpressionType <: Expression](unresolvedExpression: ExpressionType, resolveChild: (Expression) => Expression): ExpressionType

    Resolves generic Expression children and returns its copy with children resolved.

    Resolves generic Expression children and returns its copy with children resolved.

    Attributes
    protected
    Definition Classes
    ResolvesExpressionChildren
  43. def withResolvedTimezone(expression: Expression, timeZoneId: String): Expression

    Apply timezone to TimeZoneAwareExpression expressions.

  44. def withResolvedTimezoneCopyTags(expression: Expression, timeZoneId: String): Expression

    Applies a timezone to a TimeZoneAwareExpression while preserving original tags.

    Applies a timezone to a TimeZoneAwareExpression while preserving original tags.

    This method is particularly useful for cases like resolving Cast expressions where tags such as USER_SPECIFIED_CAST need to be preserved.

    expression

    The TimeZoneAwareExpression to apply the timezone to.

    timeZoneId

    The timezone ID to apply.

    returns

    A new TimeZoneAwareExpression with the specified timezone and original tags.

  45. def withSQLConf[T](pairs: (String, String)*)(f: => T): T

    Sets all SQL configurations specified in pairs, calls f, and then restores all SQL configurations.

    Sets all SQL configurations specified in pairs, calls f, and then restores all SQL configurations.

    Attributes
    protected
    Definition Classes
    SQLConfHelper

Deprecated Value Members

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

    (Since version 9)

Inherited from QueryErrorsBase

Inherited from DataTypeErrorsBase

Inherited from SQLConfHelper

Inherited from AnyRef

Inherited from Any

Ungrouped