summaryrefslogtreecommitdiff
path: root/test/sql/query.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-10-10 15:19:28 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-10-10 15:19:28 +0000
commitddf875dd0c554660d3a4f58e261b03e22a92a625 (patch)
tree445adadb0e31238d1e856ad09182cc9380951f70 /test/sql/query.py
parent74064ce9fd8e08619fb376ac506311d96a7ba85e (diff)
downloadsqlalchemy-ddf875dd0c554660d3a4f58e261b03e22a92a625.tar.gz
- initial sybase support checkin, [ticket:785]
Diffstat (limited to 'test/sql/query.py')
-rw-r--r--test/sql/query.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sql/query.py b/test/sql/query.py
index 4006d5617..5a5965f3d 100644
--- a/test/sql/query.py
+++ b/test/sql/query.py
@@ -674,7 +674,7 @@ class CompoundTest(PersistTest):
found2 = self._fetchall_sorted(e.alias('foo').select().execute())
self.assertEquals(found2, wanted)
- @testing.unsupported('mysql')
+ @testing.unsupported('mysql', 'sybase')
def test_intersect(self):
i = intersect(
select([t2.c.col3, t2.c.col4]),
@@ -689,7 +689,7 @@ class CompoundTest(PersistTest):
found2 = self._fetchall_sorted(i.alias('bar').select().execute())
self.assertEquals(found2, wanted)
- @testing.unsupported('mysql', 'oracle')
+ @testing.unsupported('mysql', 'oracle', 'sybase')
def test_except_style1(self):
e = except_(union(
select([t1.c.col3, t1.c.col4]),
@@ -703,7 +703,7 @@ class CompoundTest(PersistTest):
found = self._fetchall_sorted(e.alias('bar').select().execute())
self.assertEquals(found, wanted)
- @testing.unsupported('mysql', 'oracle')
+ @testing.unsupported('mysql', 'oracle', 'sybase')
def test_except_style2(self):
e = except_(union(
select([t1.c.col3, t1.c.col4]),
@@ -720,7 +720,7 @@ class CompoundTest(PersistTest):
found2 = self._fetchall_sorted(e.alias('bar').select().execute())
self.assertEquals(found2, wanted)
- @testing.unsupported('sqlite', 'mysql', 'oracle')
+ @testing.unsupported('sqlite', 'mysql', 'oracle', 'sybase')
def test_except_style3(self):
# aaa, bbb, ccc - (aaa, bbb, ccc - (ccc)) = ccc
e = except_(