v.1.1.54362New Feature
Nullable Type Casting to Non-Nullable When Not NULL
ANullabletype can beCASTto a non-Nullabletype if the argument is notNULL.
Why it matters
This feature allows seamless conversion ofNullable types to their corresponding non-Nullable types during CAST operations, provided the value is not NULL. It simplifies data transformations by avoiding errors or additional checks when safely removing nullability from columns or expressions.How to use it
Simply apply aCAST operation from a Nullable type to the desired non-Nullable type. The operation will succeed if the argument is not NULL. For example:SELECT CAST(nullable_column AS <non-nullable_type>) FROM table WHERE nullable_column IS NOT NULL