# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1636567641 -3600 # Node ID 718492fb87147161859dcbad7e724c97677742b5 # Parent 9f658a97666feb9b25491263598e1d7753133164 Answer to question. Please test if it works for your system. diff --git a/tests/OnClientTester.java b/tests/OnClientTester.java --- a/tests/OnClientTester.java +++ b/tests/OnClientTester.java @@ -16,6 +16,7 @@ import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; +import java.sql.DriverManager; import java.sql.SQLException; import java.util.List; @@ -34,7 +35,7 @@ public final class OnClientTester extend boolean watchDogEnabled = true; // Don't know why I need this all of a sudden.. is it only on my system? - Class.forName("org.monetdb.jdbc.MonetDriver"); + // Class.forName("org.monetdb.jdbc.MonetDriver"); // should not be needed if you add: import java.sql.DriverManager; for (String arg : args) { if (arg.equals("-v")) @@ -324,7 +325,6 @@ public final class OnClientTester extend assertEq("connection is closed", true, conn.isClosed()); } - public void test_FailUploadLate2() throws SQLException, Failure { // Here we send empty lines only, to check if the server detects is properly instead // of simply complaining about an incomplete file. @@ -572,5 +572,4 @@ public final class OnClientTester extend return lines; } } - }