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
feat: Add TimestampNTZType support for casts and unix_timestamp
Add comprehensive support for TimestampNTZType (Timestamp without timezone)
wherever TimestampType is currently supported.
Changes:
- Add TimestampNTZType to CometCast.supportedTypes
- Support casting TimestampNTZ to Long, String, Date, and Timestamp
- Add TimestampNTZ support to unix_timestamp function (no timezone conversion)
- Add tests for TimestampNTZ casts and temporal expressions
TimestampNTZ stores local time without timezone context, so:
- unix_timestamp simply divides microseconds by 1,000,000
- Casts to Date use simple truncation (no timezone adjustment)
- Casts to String format as local datetime without timezone suffix
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments