v.21.12Improvements
Implement transform function with Decimal arguments
Why it matters
The feature adds compatibility for Decimal data types in thetransform function, enabling users to perform conditional transformations on Decimal columns. This enhancement broadens the function’s usability for precise numeric data processing.How to use it
Use thetransform function with Decimal type arguments in the same way as with other supported types. For example, you can write queries like SELECT transform(decimal_column, [condition_values], [result_values], default_value) FROM table.