summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/test
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-10-01 21:26:05 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-10-01 21:26:05 -0400
commit761b4f29e295cfaa774a9a2fec713f9055548387 (patch)
tree8b350a8a40e443157055faba532a62ba7b9048c7 /lib/sqlalchemy/test
parent4557fd5a9af9ad4d93ab1eacef4b7e059bb10dc3 (diff)
downloadsqlalchemy-761b4f29e295cfaa774a9a2fec713f9055548387.tar.gz
- *Major* cleanup / modernization of the Informix
dialect for 0.6, courtesy Florian Apolloner. [ticket:1906]
Diffstat (limited to 'lib/sqlalchemy/test')
-rw-r--r--lib/sqlalchemy/test/requires.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/sqlalchemy/test/requires.py b/lib/sqlalchemy/test/requires.py
index a9b84e85d..14c548f12 100644
--- a/lib/sqlalchemy/test/requires.py
+++ b/lib/sqlalchemy/test/requires.py
@@ -52,6 +52,7 @@ def boolean_col_expressions(fn):
no_support('mssql', 'not supported by database'),
no_support('sybase', 'not supported by database'),
no_support('maxdb', 'FIXME: verify not supported by database'),
+ no_support('informix', 'not supported by database'),
)
def identity(fn):
@@ -120,6 +121,7 @@ def savepoints(fn):
no_support('sqlite', 'not supported by database'),
no_support('sybase', 'FIXME: guessing, needs confirmation'),
exclude('mysql', '<', (5, 0, 3), 'not supported by database'),
+ exclude('informix', '<', (11, 55, 'xC3'), 'not supported by database'),
)
def denormalized_names(fn):
@@ -148,6 +150,7 @@ def sequences(fn):
no_support('mysql', 'no SEQUENCE support'),
no_support('sqlite', 'no SEQUENCE support'),
no_support('sybase', 'no SEQUENCE support'),
+ no_support('informix', 'no SEQUENCE support'),
)
def update_nowait(fn):
@@ -176,6 +179,7 @@ def intersect(fn):
fails_on('firebird', 'no support for INTERSECT'),
fails_on('mysql', 'no support for INTERSECT'),
fails_on('sybase', 'no support for INTERSECT'),
+ fails_on('informix', 'no support for INTERSECT'),
)
def except_(fn):
@@ -185,6 +189,7 @@ def except_(fn):
fails_on('firebird', 'no support for EXCEPT'),
fails_on('mysql', 'no support for EXCEPT'),
fails_on('sybase', 'no support for EXCEPT'),
+ fails_on('informix', 'no support for EXCEPT'),
)
def offset(fn):