diff options
author | Tony Locke <tlocke@tlocke.org.uk> | 2014-05-11 20:58:24 +0100 |
---|---|---|
committer | Tony Locke <tlocke@tlocke.org.uk> | 2014-05-21 19:17:41 +0100 |
commit | 996de05ee96b62943efb4bd9495127b40aaba4d5 (patch) | |
tree | ba3055d61dcc159760a986d4f347c37386192542 /test/requirements.py | |
parent | fc4e113cf1ee0c1c4ca636df146aaee8522c92d5 (diff) | |
download | sqlalchemy-996de05ee96b62943efb4bd9495127b40aaba4d5.tar.gz |
Add postgresql+pg8000 to floats_to_four_decimals
pg8000 uses binary transfer of floats and so accuracy is lost for floats
that can't be represented exactly in binary.
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/requirements.py b/test/requirements.py index 8576f2e71..09f973543 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -608,8 +608,11 @@ class DefaultRequirements(SuiteRequirements): ), ('mssql+pymssql', None, None, 'mssql+pymssql has FP inaccuracy even with ' - 'only four decimal places ' - ) + 'only four decimal places '), + ( + 'postgresql+pg8000', None, None, + 'postgresql+pg8000 has FP inaccuracy even with ' + 'only four decimal places '), ]) @property |