diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-17 13:45:23 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-17 13:45:23 -0500 |
| commit | 59ca4633acd42d90dc01aef9a40373ee98080481 (patch) | |
| tree | 41c46078729933e14d9b7ff4767b4a5a813f673a /test/sql/test_query.py | |
| parent | d6545f7db78d8bd930685019678f6e7df056ed22 (diff) | |
| download | sqlalchemy-59ca4633acd42d90dc01aef9a40373ee98080481.tar.gz | |
- remove informix dialect, moved out to https://bitbucket.org/zzzeek/sqlalchemy_informixdb
- remove informix, maxdb, access symbols from tests etc.
Diffstat (limited to 'test/sql/test_query.py')
| -rw-r--r-- | test/sql/test_query.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 39c896266..8e619fe74 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -1110,7 +1110,6 @@ class QueryTest(fixtures.TestBase): @testing.crashes('oracle', 'FIXME: unknown, varify not fails_on()') @testing.crashes('firebird', 'An identifier must begin with a letter') - @testing.crashes('maxdb', 'FIXME: unknown, verify not fails_on()') def test_column_accessor_shadow(self): meta = MetaData(testing.db) shadowed = Table('test_shadowed', meta, @@ -1900,7 +1899,6 @@ class CompoundTest(fixtures.TestBase): eq_(u.execute().fetchall(), wanted) @testing.fails_on('firebird', "doesn't like ORDER BY with UNIONs") - @testing.fails_on('maxdb', 'FIXME: unknown') @testing.requires.subqueries def test_union_ordered_alias(self): (s1, s2) = ( @@ -1919,7 +1917,6 @@ class CompoundTest(fixtures.TestBase): @testing.fails_on('firebird', "has trouble extracting anonymous column from union subquery") @testing.fails_on('mysql', 'FIXME: unknown') @testing.fails_on('sqlite', 'FIXME: unknown') - @testing.fails_on('informix', "FIXME: unknown (maybe the second alias isn't allows)") def test_union_all(self): e = union_all( select([t1.c.col3]), |
