Skip to content

Commit 2ebf092

Browse files
Use order by clause to ensure expected order.
1 parent 5311008 commit 2ebf092

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_7600_pipelining_async.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,9 @@ async def test_7639(self):
798798
pipeline2 = oracledb.create_pipeline()
799799
pipeline2.add_execute("insert into TestTempTable (IntCol) values (2)")
800800
pipeline2.add_commit()
801-
pipeline2.add_fetchall("select IntCol from TestTempTable")
801+
pipeline2.add_fetchall(
802+
"select IntCol from TestTempTable order by IntCol"
803+
)
802804

803805
await conn1.run_pipeline(pipeline1)
804806
results = await conn2.run_pipeline(pipeline2)

0 commit comments

Comments
 (0)