diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-10-02 11:00:22 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-10-02 11:00:22 -0400 |
| commit | 25c08f6def19e1034a887e972ad286ef122473d0 (patch) | |
| tree | ba691c6e57197bbb73ee298befa01950219390fa /test/engine/test_execute.py | |
| parent | 3d389b19b70b65cb76226c3f3aa4c5d926e1f12b (diff) | |
| parent | 19d5287d833110507d8ed7b64d31871f67d3f171 (diff) | |
| download | sqlalchemy-25c08f6def19e1034a887e972ad286ef122473d0.tar.gz | |
merge tip
Diffstat (limited to 'test/engine/test_execute.py')
| -rw-r--r-- | test/engine/test_execute.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py index d85279981..86764f170 100644 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@ -34,9 +34,10 @@ class ExecuteTest(TestBase): def teardown_class(cls): metadata.drop_all() - @testing.fails_on_everything_except('firebird', 'maxdb', - 'sqlite', '+pyodbc', - '+mxodbc', '+zxjdbc', 'mysql+oursql') + @testing.fails_on_everything_except('firebird', 'maxdb', + 'sqlite', '+pyodbc', + '+mxodbc', '+zxjdbc', 'mysql+oursql', + 'informix+informixdb') def test_raw_qmark(self): for conn in testing.db, testing.db.connect(): conn.execute('insert into users (user_id, user_name) ' @@ -103,7 +104,7 @@ class ExecuteTest(TestBase): 'horse'), (4, 'sally')] conn.execute('delete from users') - @testing.fails_on_everything_except('sqlite', 'oracle+cx_oracle') + @testing.fails_on_everything_except('sqlite', 'oracle+cx_oracle', 'informix+informixdb') def test_raw_named(self): for conn in testing.db, testing.db.connect(): conn.execute('insert into users (user_id, user_name) ' @@ -183,7 +184,7 @@ class CompiledCacheTest(TestBase): cached_conn.execute(ins, {'user_name':'u2'}) cached_conn.execute(ins, {'user_name':'u3'}) assert len(cache) == 1 - eq_(conn.execute("select count(1) from users").scalar(), 3) + eq_(conn.execute("select count(*) from users").scalar(), 3) class LogTest(TestBase): def _test_logger(self, eng, eng_name, pool_name): |
