diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-08-09 23:46:06 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2009-08-09 23:46:06 +0000 |
| commit | d564baf593311ca5bc62dbc401e57986bf9169ba (patch) | |
| tree | 11a278cb89481ca6d775971ff6ee07c2701f8008 /test/sql | |
| parent | f0d2e599b60317fc27f64f0abe7d2af65fba7e7b (diff) | |
| download | sqlalchemy-d564baf593311ca5bc62dbc401e57986bf9169ba.tar.gz | |
- the Oracle dialect now features NUMBER which intends
to act justlike Oracle's NUMBER type. It is the primary
numeric type returned by table reflection and attempts
to return Decimal()/float/int based on the precision/scale
parameters. [ticket:885]
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index ccd6e5038..cede11cc5 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -205,7 +205,7 @@ class ColumnsTest(TestBase, AssertsExecutionResults): db = testing.db if testing.against('oracle'): - expectedResults['float_column'] = 'float_column NUMERIC(25, 2)' + expectedResults['float_column'] = 'float_column FLOAT' if testing.against('sqlite'): expectedResults['float_column'] = 'float_column FLOAT' |
