MaxGekk commented on code in PR #49549:
URL: https://github.com/apache/spark/pull/49549#discussion_r1922032657

##########
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/V2ScanRelationPushDown.scala:
##########
@@ -324,12 +324,14 @@ object V2ScanRelationPushDown extends Rule[LogicalPlan] 
with PredicateHelper {
     }
   }
 
-  private def addCastIfNeeded(expression: Expression, expectedDataType: 
DataType) =
-    if (expression.dataType == expectedDataType) {
-      expression
+  private def addCastIfNeeded(expression: Expression, expectedDataType: 
DataType) = {
+    val cast = Cast(expression, expectedDataType)
+    if (cast.needsTimeZone) {
+      cast.withTimeZone(conf.sessionLocalTimeZone)

Review Comment:
   you could avoid making a copy of `Cast` if a time zone has been set already. 
Could you check `cast.timeZoneId.isEmpty`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to