iceberg-python
iceberg-python copied to clipboard
Added support for ns #1169
@kevinjqliu made the changes suggested in the previous comments and added the test case for the functionality
@kevinjqliu i have a few questions about the these test case scenarios
- the first scenario is already present i think,
test_pyarrow_time64_us_to_icebergfunction checks withusprecision - secondly, can you please explain a bit about the test case you want me to write on the read/write path, what file should that be in and what specifically should it test for
You can find some information in my previous PR. https://github.com/apache/iceberg-python/pull/1206
- [x]
Time64Typewithusprecision. This was already supported by the previous code. - [ ]
Time64Typewithnsprecision,_downcast_ns_timestamp_to_usnot set. Should error - [ ]
Time64Typewithnsprecision,_downcast_ns_timestamp_to_usis set. Should downcast precision tous - [ ] Able to write pyarrow dataframe with a column with
Time64Typewithnsprecision.
You can use #848 as an example where timestamp downcast was implemented