FANNG1 commented on issue #4743: URL: https://github.com/apache/gravitino/issues/4743#issuecomment-2326553485
Timestamp is transformed to parquet TIMESTAMPTZ_MICROS in https://github.com/apache/iceberg/blob/main/parquet/src/main/java/org/apache/iceberg/parquet/TypeToMessageType.java#L138-L143 ```java case TIMESTAMP: if (((TimestampType) primitive).shouldAdjustToUTC()) { return Types.primitive(INT64, repetition).as(TIMESTAMPTZ_MICROS).id(id).named(name); } else { return Types.primitive(INT64, repetition).as(TIMESTAMP_MICROS).id(id).named(name); } ``` -- 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]
