diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-25 19:41:43 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-08-25 19:41:43 +0000 |
| commit | 567ea2faefe67c6ad2608855b21eb930a41c69e8 (patch) | |
| tree | 6e5faa6e263b54c6385b208af5124f82d81dc7d2 /test/dialect/test_oracle.py | |
| parent | 4d40f1b71ec293af5a7ce16a66429976895a8545 (diff) | |
| parent | e4ff3d2a35af1daa36f8cdbff8d72d08dfa8738e (diff) | |
| download | sqlalchemy-567ea2faefe67c6ad2608855b21eb930a41c69e8.tar.gz | |
- merge
Diffstat (limited to 'test/dialect/test_oracle.py')
| -rw-r--r-- | test/dialect/test_oracle.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/dialect/test_oracle.py b/test/dialect/test_oracle.py index 1fbaf96dd..0348cd137 100644 --- a/test/dialect/test_oracle.py +++ b/test/dialect/test_oracle.py @@ -1329,13 +1329,15 @@ class BufferedColumnTest(fixtures.TestBase, AssertsCompiledSQL): meta.drop_all() def test_fetch(self): - result = binary_table.select().execute().fetchall() + result = binary_table.select().order_by(binary_table.c.id).\ + execute().fetchall() eq_(result, [(i, stream) for i in range(1, 11)]) @testing.fails_on('+zxjdbc', 'FIXME: zxjdbc should support this') def test_fetch_single_arraysize(self): - eng = testing_engine(options={'arraysize':1}) - result = eng.execute(binary_table.select()).fetchall() + eng = testing_engine(options={'arraysize': 1}) + result = eng.execute(binary_table.select(). + order_by(binary_table.c.id)).fetchall() eq_(result, [(i, stream) for i in range(1, 11)]) class UnsupportedIndexReflectTest(fixtures.TestBase): |
