diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-07-09 11:52:31 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-07-09 11:52:31 -0400 |
| commit | cd8a40284d0fb053f652f4a3d2745c22674603f8 (patch) | |
| tree | 83c006548622bf27c33a8e5dbfb6b02f460cf493 /test/sql/test_query.py | |
| parent | d5b18cb05b355ac02e09951f4dd5bcf9b7f58f48 (diff) | |
| download | sqlalchemy-cd8a40284d0fb053f652f4a3d2745c22674603f8.tar.gz | |
- we dont actually need this unicode cast, on py3k + linux it seems the
has_table issues are OK. On OSX forget it.
- still some issues with PY3k + pyodbc + decimal values it doesn't expect, not sure
Diffstat (limited to 'test/sql/test_query.py')
| -rw-r--r-- | test/sql/test_query.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 0ed429850..39c896266 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -1370,6 +1370,8 @@ class TableInsertTest(fixtures.TablesTest): inserted_primary_key=[1] ) + @testing.crashes("mssql+pyodbc", + "Pyodbc + SQL Server + Py3K, some decimal handling issue") def test_uppercase_inline_implicit(self): t = self.tables.foo self._test( |
