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
In order to deal to support use cases where a decimal value has to be downscaled to fit into existing decimal schema with a certain scale, it is useful to allow users to downscale there decimals. The propose is to add a function with the following signature:
decimalFromNumberWithScale(decimal, scale)
For more context about why such method is needed, check the example below:
Given the following schema
In order to deal to support use cases where a decimal value has to be downscaled to fit into existing decimal schema with a certain scale, it is useful to allow users to downscale there decimals. The propose is to add a function with the following signature:
For more context about why such method is needed, check the example below:
Given the following schema
The user can send a deceased scale value like 1.3, however increasing the scale by sending a value like 1.33499 would fail with
(for more details, check: #69 (comment))
The text was updated successfully, but these errors were encountered: