diff options
| author | Michael Trier <mtrier@gmail.com> | 2009-04-13 03:05:03 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2009-04-13 03:05:03 +0000 |
| commit | eba7328c46202af92de63d2b019bb2e4892255b7 (patch) | |
| tree | 79d09eefb7b97a893949053534138499c67ec964 /test/dialect/sqlite.py | |
| parent | e14734c8dd35dda06756496d0050c976cd90c5ab (diff) | |
| download | sqlalchemy-eba7328c46202af92de63d2b019bb2e4892255b7.tar.gz | |
Corrected the sqlite float type so that it properly gets reflected as a SLFloat type. Fixes #1273.
Diffstat (limited to 'test/dialect/sqlite.py')
| -rw-r--r-- | test/dialect/sqlite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/sqlite.py b/test/dialect/sqlite.py index 005fad66b..03e7ecdf3 100644 --- a/test/dialect/sqlite.py +++ b/test/dialect/sqlite.py @@ -73,7 +73,7 @@ class TestTypes(TestBase, AssertsExecutionResults): ( Numeric(10, 2), sqlite.SLNumeric(10, 2), ), ( DECIMAL, sqlite.SLNumeric(), ), ( DECIMAL(10, 2), sqlite.SLNumeric(10, 2), ), - ( Float, sqlite.SLNumeric(), ), + ( Float, sqlite.SLFloat(), ), ( sqlite.SLNumeric(), ), ( INT, sqlite.SLInteger(), ), ( Integer, sqlite.SLInteger(), ), |
