We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
validate-data
Problem:
numeric
NaN
Decimal('NaN')
Decimal('NaN') == Decimal('NaN') -> False
Solution
The text was updated successfully, but these errors were encountered:
test: added test case addressing #571
7ac8d40
df7d740
fix: accommodate Decimal NaN != Decimal NaN (#573)
3602266
* test: added test case addressing #571 * fix: accommodate Decimal NaN != Decimal NaN
No branches or pull requests
Problem:
numeric
data types are breaking thevalidate-data
function.NaN
in Postgres, AsyncPG reads that as Python ObjectDecimal('NaN')
.Decimal('NaN') == Decimal('NaN') -> False
.Solution
The text was updated successfully, but these errors were encountered: