diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-03-16 22:38:18 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-03-16 22:38:18 +0000 |
| commit | 811ece13974504685e1e2add7c91b2b88d213322 (patch) | |
| tree | 04ca56f50aa99b85e29e0e546f37641674e94caf /test/sql/test_query.py | |
| parent | 84c6857d214725246c28f97b4dba9d52385f9a37 (diff) | |
| download | sqlalchemy-811ece13974504685e1e2add7c91b2b88d213322.tar.gz | |
- The except_() method now renders as MINUS on Oracle,
which is more or less equivalent on that platform.
[ticket:1712]
Diffstat (limited to 'test/sql/test_query.py')
| -rw-r--r-- | test/sql/test_query.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 4ccc51713..a189594b7 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -1136,7 +1136,6 @@ class CompoundTest(TestBase): eq_(found2, wanted) @testing.crashes('firebird', 'Does not support except') - @testing.crashes('oracle', 'FIXME: unknown, verify not fails_on') @testing.crashes('sybase', 'FIXME: unknown, verify not fails_on') @testing.fails_on('mysql', 'FIXME: unknown') @testing.fails_on('sqlite', "Can't handle this style of nesting") @@ -1154,7 +1153,6 @@ class CompoundTest(TestBase): eq_(found, wanted) @testing.crashes('firebird', 'Does not support except') - @testing.crashes('oracle', 'FIXME: unknown, verify not fails_on') @testing.crashes('sybase', 'FIXME: unknown, verify not fails_on') @testing.fails_on('mysql', 'FIXME: unknown') def test_except_style2(self): @@ -1177,7 +1175,6 @@ class CompoundTest(TestBase): eq_(found2, wanted) @testing.crashes('firebird', 'Does not support except') - @testing.crashes('oracle', 'FIXME: unknown, verify not fails_on') @testing.crashes('sybase', 'FIXME: unknown, verify not fails_on') @testing.fails_on('mysql', 'FIXME: unknown') @testing.fails_on('sqlite', "Can't handle this style of nesting") @@ -1195,7 +1192,6 @@ class CompoundTest(TestBase): [('ccc',)]) @testing.crashes('firebird', 'Does not support except') - @testing.crashes('oracle', 'FIXME: unknown, verify not fails_on') @testing.crashes('sybase', 'FIXME: unknown, verify not fails_on') @testing.fails_on('mysql', 'FIXME: unknown') def test_except_style4(self): |
