You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Presto Iceberg connector does not differentiate between timestamp and timestamptz, mapping both to TIMESTAMP. This is incorrect, especially when deprecated.legacy-timestamp is set to false, because timestamptz represents a point in time value, whereas Presto's TIMESTAMP represents a timestamp that is not a point in time.
Current Behavior
All Iceberg timestamp and timestamptzs are being mapped to TIMESTAMP
Possible Solution
Improve the type mapping to use TIMESTAMP WITH TIME ZONE
Steps to Reproduce
Screenshots (if appropriate)
Context
The text was updated successfully, but these errors were encountered:
Your Environment
Expected Behavior
Currently, the Presto Iceberg connector does not differentiate between
timestamp
andtimestamptz
, mapping both toTIMESTAMP
. This is incorrect, especially whendeprecated.legacy-timestamp
is set tofalse
, becausetimestamptz
represents a point in time value, whereas Presto'sTIMESTAMP
represents a timestamp that is not a point in time.Current Behavior
All Iceberg
timestamp
andtimestamptz
s are being mapped toTIMESTAMP
Possible Solution
Improve the type mapping to use
TIMESTAMP WITH TIME ZONE
Steps to Reproduce
Screenshots (if appropriate)
Context
The text was updated successfully, but these errors were encountered: