We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5311008 commit 2ebf092Copy full SHA for 2ebf092
tests/test_7600_pipelining_async.py
@@ -798,7 +798,9 @@ async def test_7639(self):
798
pipeline2 = oracledb.create_pipeline()
799
pipeline2.add_execute("insert into TestTempTable (IntCol) values (2)")
800
pipeline2.add_commit()
801
- pipeline2.add_fetchall("select IntCol from TestTempTable")
+ pipeline2.add_fetchall(
802
+ "select IntCol from TestTempTable order by IntCol"
803
+ )
804
805
await conn1.run_pipeline(pipeline1)
806
results = await conn2.run_pipeline(pipeline2)
0 commit comments