Skip to content

Commit 5ad043d

Browse files
committed
Bump Firebird 2.5.x tests to 2.5.9
1 parent 5a68bca commit 5ad043d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ to provide lightweight, throwaway instances of Firebird for JUnit tests.
99

1010
The docker image used is [jacobalberty/firebird](https://hub.docker.com/r/jacobalberty/firebird/).
1111

12-
If you want to use 2.5, use the 2.5.x-sc (SuperClassic) variant of the image, as
13-
the 2.5.x-ss (SuperServer) variant seems to be broken.
12+
If you want to use 2.5, use the 2.5.x-sc (SuperClassic) variant of the image, or 2.5.9-ss
13+
as earlier versions of the 2.5.x-ss (SuperServer) variant seem to be broken.
1414

1515
Prerequisites
1616
-------------

src/test/java/org/firebirdsql/testcontainers/JDBCDriverTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ public static Iterable<Object[]> data() {
3939
{"jdbc:tc:firebird://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
4040
{"jdbc:tc:firebird:3.0.4://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
4141
{"jdbc:tc:firebirdsql:3.0.4://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
42-
{"jdbc:tc:firebirdsql:2.5.8-sc://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
43-
// 2.5.x-ss seems to be broken, see https://github.com/jacobalberty/firebird-docker/issues/33
44-
// {"jdbc:tc:firebirdsql:2.5.8-ss://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
42+
{"jdbc:tc:firebirdsql:2.5.9-sc://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
43+
{"jdbc:tc:firebirdsql:2.5.9-ss://hostname/databasename?user=someuser&password=somepwd&charSet=utf-8&TC_INITFUNCTION=org.firebirdsql.testcontainers.JDBCDriverTest::sampleInitFunction", EnumSet.of(Options.ScriptedSchema, Options.JDBCParams)},
4544
});
4645
}
4746

0 commit comments

Comments
 (0)