Skip to content

Commit

Permalink
fix non-deterministic test
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrinot committed Apr 5, 2024
1 parent 0f146cd commit 07a0e18
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ public void testManyUpdates() throws Exception {
+ "2,\"IDB\",42.0\r\n"
+ "3,\"PDB\",42.0\r\n"
+ "4,\"KDB\",42.0\r\n",
"select id, symbol, last(price) as last_price from " + questTableName,
"select id, symbol, last(price) as last_price from " + questTableName + " order by id",
120,
questDBContainer.getMappedPort(QuestDBUtils.QUESTDB_HTTP_PORT));

// total number of rows is equal to the number of updates and inserts
Expand Down

0 comments on commit 07a0e18

Please sign in to comment.