-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Iceberg to 1.7.0 #23986
Update Iceberg to 1.7.0 #23986
Conversation
@@ -166,6 +166,8 @@ public static Object getValue(JsonNode partitionValue, Type type) | |||
return rescale( | |||
partitionValue.decimalValue(), | |||
createDecimalType(decimalType.precision(), decimalType.scale())); | |||
// TODO https://github.com/trinodb/trino/issues/19753 Support Iceberg timestamp types with nanosecond precision |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7199a21
to
be4d217
Compare
be4d217
to
410540a
Compare
@@ -166,6 +166,8 @@ public static Object getValue(JsonNode partitionValue, Type type) | |||
return rescale( | |||
partitionValue.decimalValue(), | |||
createDecimalType(decimalType.precision(), decimalType.scale())); | |||
// TODO https://github.com/trinodb/trino/issues/19753 Support Iceberg timestamp types with nanosecond precision | |||
case TIMESTAMP_NANO: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI: there's also io.trino.plugin.iceberg.catalog.glue.GlueIcebergUtil#toGlueTypeStringLossy
. It has a default
clause, which makes the switch
not subject to exhaustivity checks.
Description
Release notes
(x) This is not user-visible or is docs only, and no release notes are required.