sshkvar opened a new issue #2122:
URL: https://github.com/apache/iceberg/issues/2122


   Spark can't read table which was created in Presto 
   
   ```java
   create table iceberg.examples.test_table 
   with (format = 'parquet')
   as select timestamp '2021-01-19 23:59:59.999999' as ts;
   ```
   In Spark 
   ```scala    
   spark.read
         .format("iceberg")
         .load("examples.test_table")
         .show(10, false)
   ```
   
   Fails with exception `java.lang.UnsupportedOperationException: Spark does 
not support timestamp without time zone fields`
   
   Please add support of `Timestamp without timezone` type into Iceberg Spark 
runtime, because Iceberg supports this type


----------------------------------------------------------------
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:
us...@infra.apache.org



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

Reply via email to