v.1.1.54337New Feature
Improved Time Zone Support for DateTime Data Type
Improved support for time zones. TheDateTimedata type can be annotated with the timezone that is used for parsing and formatting in text formats. Example:DateTime('Asia/Istanbul'). When timezones are specified in functions forDateTimearguments, the return type will track the timezone, and the value will be displayed as expected.
Why it matters
This feature was created to address issues with handling DateTime values across different time zones. It ensures that when a timezone is specified, the parsing, formatting, and function return types correctly track and display the time zone, improving accuracy and usability for users working with datetime data in multiple locales.How to use it
To use this feature, specify the timezone when declaring a DateTime column or variable using syntax likeDateTime('Asia/Istanbul'). Functions that take DateTime arguments with timezones will then correctly track and return values with the associated timezone displayed as expected.