summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-10-21 02:46:43 +0000
committerMichael Trier <mtrier@gmail.com>2008-10-21 02:46:43 +0000
commit00cec7c0884b6d5d5389a0cb88badd264fa9bedd (patch)
treec150a35ccd445ffd8da38d0c2af9ad2f920a479a /test/sql
parent11619ad8eeb137efd84bda67d34414c3c3e00080 (diff)
downloadsqlalchemy-00cec7c0884b6d5d5389a0cb88badd264fa9bedd.tar.gz
Corrected the is_subquery() check based on recent changes. Excluded the test_in_filtering_advanced test for mssql.
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/query.py b/test/sql/query.py
index 4d52c2764..4decf3b68 100644
--- a/test/sql/query.py
+++ b/test/sql/query.py
@@ -590,7 +590,7 @@ class QueryTest(TestBase):
r = s.execute(search_key=None).fetchall()
assert len(r) == 0
- @testing.fails_on('firebird', 'maxdb', 'oracle')
+ @testing.fails_on('firebird', 'maxdb', 'oracle', 'mssql')
def test_in_filtering_advanced(self):
"""test the behavior of the in_() function when comparing against an empty collection."""