MaxGekk opened a new pull request #28261: [SPARK-31489][SQL] Fix pushing down 
filters with `java.time.LocalDate` values in ORC
URL: https://github.com/apache/spark/pull/28261
 
 
   ### What changes were proposed in this pull request?
   Convert `java.time.LocalDate` to `java.sql.Date` in pushed down filters to 
ORC datasource when Java 8 time API enabled.
   
   ### Why are the changes needed?
   The changes fix the exception raised while pushing date filters when 
`spark.sql.datetime.java8API.enabled` is set to `true`:
   ```
   Wrong value class java.time.LocalDate for DATE.EQUALS leaf
   java.lang.IllegalArgumentException: Wrong value class java.time.LocalDate 
for DATE.EQUALS leaf
        at 
org.apache.hadoop.hive.ql.io.sarg.SearchArgumentImpl$PredicateLeafImpl.checkLiteralType(SearchArgumentImpl.java:192)
        at 
org.apache.hadoop.hive.ql.io.sarg.SearchArgumentImpl$PredicateLeafImpl.<init>(SearchArgumentImpl.java:75)
        at 
org.apache.hadoop.hive.ql.io.sarg.SearchArgumentImpl$BuilderImpl.equals(SearchArgumentImpl.java:352)
        at 
org.apache.spark.sql.execution.datasources.orc.OrcFilters$.buildLeafSearchArgument(OrcFilters.scala:229)
   ```
   
   ### Does this PR introduce any user-facing change?
   Yes
   
   ### How was this patch tested?
   Added tests to `OrcFilterSuite`.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to