From: Michael Trier Date: Thu, 16 Oct 2008 17:14:30 +0000 (+0000) Subject: Unless I'm missing something mssql doesn't support and / or within column selects... X-Git-Tag: rel_0_5rc3~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc35f5b6e0cc67044265baa5af181bbfcd6e469b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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. --- diff --git a/test/sql/query.py b/test/sql/query.py index 0849d1a7b7..c5b9b5d35c 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)