smaheshwar-pltr commented on code in PR #1457: URL: https://github.com/apache/iceberg-python/pull/1457#discussion_r1894501982
########## tests/integration/test_partitioning_key.py: ########## @@ -203,10 +203,11 @@ # """ ), ( - [PartitionField(source_id=8, field_id=1001, transform=IdentityTransform(), name="timestamp_field")], + [PartitionField(source_id=8, field_id=1001, transform=IdentityTransform(), name="timestamp#field")], [datetime(2023, 1, 1, 12, 0, 1, 999)], - Record(timestamp_field=1672574401000999), - "timestamp_field=2023-01-01T12%3A00%3A01.000999", + Record(**{"timestamp#field": 1672574401000999}), # type: ignore Review Comment: Mypy complains here (https://github.com/python/mypy/issues/5382) but I think it's ok -- 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: issues-unsubscr...@iceberg.apache.org 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