There was an error while loading. Please reload this page.
1 parent 99dea0e commit 9ab6f86Copy full SHA for 9ab6f86
src/test/java/org/mariadb/jdbc/integration/ConfigurationTest.java
@@ -8,6 +8,7 @@
8
9
import java.sql.*;
10
import org.junit.jupiter.api.AfterAll;
11
+import org.junit.jupiter.api.Assumptions;
12
import org.junit.jupiter.api.BeforeAll;
13
import org.junit.jupiter.api.Test;
14
@@ -65,7 +66,7 @@ public void testSessionVariable() throws SQLException {
65
66
67
@Test
68
public void connectionAttributes() throws SQLException {
-
69
+ Assumptions.assumeTrue(!"maxscale".equals(System.getenv("srv")));
70
try (org.mariadb.jdbc.Connection conn =
71
createCon("&connectionAttributes=test:test1,test2:test2Val,test3")) {
72
Statement stmt = conn.createStatement();
0 commit comments