]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Ensure scale param not sent to float types
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 6 Mar 2019 14:05:23 +0000 (09:05 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 6 Mar 2019 14:06:04 +0000 (09:06 -0500)
commit2a2011389ab0d3c80cac175b8e35a18413641358
tree3a428503ef481df5e071efbedd466061c4eaa70d
parent201c4a60e4b8af56d9c02a3675d1443ba4171c89
Ensure scale param not sent to float types

Fixed regression in SQL Server reflection due to :ticket:`4393` where the
removal of open-ended ``**kw`` from the :class:`.Float` datatype caused
reflection of this type to fail due to a "scale" argument being passed.

Fixes: #4525
Change-Id: Ief8bb535778055eff2ab0d71660f81e3676390a1
doc/build/changelog/unreleased_13/4525.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/mssql/base.py
test/dialect/mssql/test_reflection.py