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
Should rust_decimal really panic if it encounters too many trailing zeros?
Postgres has a bad habit of adding zeros to numeric types, which makes it hard to use with rust_decimal when rust_decimal panics on too many trailing zeros.
Adding trim_scale() to every output is easy to forget.