diff options
| author | Brad Allen <bradallen137@gmail.com> | 2010-03-16 16:57:54 -0600 |
|---|---|---|
| committer | Brad Allen <bradallen137@gmail.com> | 2010-03-16 16:57:54 -0600 |
| commit | d6b5550f426bf6c4dcba07cd2a1d7e2281573356 (patch) | |
| tree | eb0159a52b4ab40bf9deac432338dfc138c1160b /test/sql/test_quote.py | |
| parent | 79a40e0cdb4a320dc66069e8c51beecdc599ea9f (diff) | |
| download | sqlalchemy-d6b5550f426bf6c4dcba07cd2a1d7e2281573356.tar.gz | |
Disabling tests for mssql+mxodbc where mxODBC cursor.execute chokes on invalid placement of bind parameter "?" within the SQL statement.
Diffstat (limited to 'test/sql/test_quote.py')
| -rw-r--r-- | test/sql/test_quote.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/sql/test_quote.py b/test/sql/test_quote.py index f4df98b9e..1b14bbd67 100644 --- a/test/sql/test_quote.py +++ b/test/sql/test_quote.py @@ -56,6 +56,10 @@ class QuoteTest(TestBase, AssertsCompiledSQL): '"25column" INTEGER' ')' ) + + @testing.crashes('mssql+mxodbc', """Invalid bind parameter placement: + 'select ident_seed(?), ident_incr(?)' ('dbo.WorstCase2', 'dbo.WorstCase2') + """) def testreflect(self): meta2 = MetaData(testing.db) t2 = Table('WorstCase2', meta2, autoload=True, quote=True) |
