Mercurial > hg > monetdb-java
diff tests/TestRunner.java @ 575:08c9918177b2 onclient
Do not check the updated row count, it varies between server versions
author | Joeri van Ruth <joeri.van.ruth@monetdbsolutions.com> |
---|---|
date | Wed, 06 Oct 2021 15:30:47 +0200 (2021-10-06) |
parents | 3370027aeb7f |
children | 13134a44dfc8 |
line wrap: on
line diff
--- a/tests/TestRunner.java +++ b/tests/TestRunner.java @@ -221,10 +221,8 @@ public class TestRunner { } } - protected void update(String query, int expectedUpdateCount) throws SQLException, Failure { + protected void update(String query) throws SQLException, Failure { execute(query); - int updateCount = stmt.getUpdateCount(); - assertEq("Update count", expectedUpdateCount, updateCount); } protected void expectError(String query, String expectedError) throws SQLException {