Github user rednaxelafx commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17777#discussion_r113589540
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Cast.scala
 ---
    @@ -165,6 +165,22 @@ case class Cast(child: Expression, dataType: DataType, 
timeZoneId: Option[String
       override def withTimeZone(timeZoneId: String): TimeZoneAwareExpression =
         copy(timeZoneId = Option(timeZoneId))
     
    +  // When this cast involves TimeZone, it's only resolved if the 
timeZoneId is set;
    +  // Otherwise behavior like Expression.resolved.
    +  override lazy val resolved: Boolean =
    +    childrenResolved && checkInputDataTypes().isSuccess &&
    +    (!needsTimeZone() || timeZoneId.isDefined)
    +
    +  private[this] def needsTimeZone(): Boolean =
    --- End diff --
    
    OK will do.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to