From fc35f5b6e0cc67044265baa5af181bbfcd6e469b Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Thu, 16 Oct 2008 17:14:30 +0000 Subject: [PATCH] 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. --- test/sql/query.py | 1 + 1 file changed, 1 insertion(+) 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) -- 2.47.3