diff options
| author | Michael Trier <mtrier@gmail.com> | 2008-10-16 17:14:30 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2008-10-16 17:14:30 +0000 |
| commit | fc35f5b6e0cc67044265baa5af181bbfcd6e469b (patch) | |
| tree | 4395d077af1a697e2d66a0163ac30b76b91d037b /test/sql/query.py | |
| parent | 4ca89fd3c4129551174aadd686db9f96bac0ba61 (diff) | |
| download | sqlalchemy-fc35f5b6e0cc67044265baa5af181bbfcd6e469b.tar.gz | |
Unless I'm missing something mssql doesn't support and / or within column selects. Even using the case when syntax it's not possible to test truth in this manner.
Diffstat (limited to 'test/sql/query.py')
| -rw-r--r-- | test/sql/query.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/query.py b/test/sql/query.py index 0849d1a7b..c5b9b5d35 100644 --- a/test/sql/query.py +++ b/test/sql/query.py @@ -200,6 +200,7 @@ class QueryTest(TestBase): self.assert_(not (rp != equal)) self.assert_(not (equal != equal)) + @testing.fails_on('mssql') def test_or_and_as_columns(self): true, false = literal(True), literal(False) |
