vovacf201 commented on issue #2167: URL: https://github.com/apache/iceberg-rust/issues/2167#issuecomment-3950298342
@blackmwk Snowflake just rejects parquet files with "+00:00" tz as invalid and expects "UTC". From Spark spec seems both strings are valid representations of UTC. I wonder if we can switch to "UTC" constant or make it configurable. From Spark spec: ``` tz Column or literal string A string detailing the time zone ID that the input should be adjusted to. It should be in the format of either region-based zone IDs or zone offsets. Region IDs must have the form ‘area/city’, such as ‘America/Los_Angeles’. Zone offsets must be in the format ‘(+|-)HH:mm’, for example ‘-08:00’ or ‘+01:00’. Also ‘UTC’ and ‘Z’ are supported as aliases of ‘+00:00’. Other short names are not recommended to use because they can be ambiguous. ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
