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
{{ message }}
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
What the title says. The lib doesn't currently support the variable numeric type: https://www.postgresql.org/docs/9.1/datatype-numeric.html which says
up to 131072 digits before the decimal point; up to 16383 digits after the decimal point
. It crashes if it's used with a numeric type beyond 2^128 because of the code in this function: https://github.com/prisma/quaint/blob/main/src/connector/postgres/conversion/decimal.rs#L81Opinions on the best way to fix it? I can try submitting a PR if I get some time this week.
I realised that the PR #344 only stops the crash but the underlying issue is that large numeric types aren't supported
The text was updated successfully, but these errors were encountered: