Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 02114ae

Browse files
committed
Add utPLSQL 3.1.8 version
1 parent 1751d68 commit 02114ae

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.travis.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,19 @@ env:
2929
- UTPLSQL_VERSION="v3.1.3"
3030
- UTPLSQL_VERSION="v3.1.6"
3131
- UTPLSQL_VERSION="v3.1.7"
32+
- UTPLSQL_VERSION="v3.1.8"
3233
- UTPLSQL_VERSION="develop"
3334
UTPLSQL_FILE="utPLSQL"
3435

3536
matrix:
3637
include:
37-
- env: UTPLSQL_VERSION="v3.1.7"
38+
- env: UTPLSQL_VERSION="v3.1.8"
3839
jdk: openjdk9
39-
- env: UTPLSQL_VERSION="v3.1.7"
40+
- env: UTPLSQL_VERSION="v3.1.8"
4041
jdk: openjdk10
41-
- env: UTPLSQL_VERSION="v3.1.7"
42+
- env: UTPLSQL_VERSION="v3.1.8"
4243
jdk: openjdk11
43-
- env: UTPLSQL_VERSION="v3.1.7"
44+
- env: UTPLSQL_VERSION="v3.1.8"
4445
jdk: openjdk12
4546

4647
before_cache:

src/main/java/org/utplsql/api/Version.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ public class Version implements Comparable<Version> {
3232
public final static Version V3_1_5 = new Version("3.1.5", 3, 1, 5, 2707, true);
3333
public final static Version V3_1_6 = new Version("3.1.6", 3, 1, 6, 2729, true);
3434
public final static Version V3_1_7 = new Version("3.1.7", 3, 1, 7, 3085, true);
35+
public final static Version V3_1_8 = new Version("3.1.7", 3, 1, 8, 3188, true);
3536
private final static Map<String, Version> knownVersions =
36-
Stream.of(V3_0_0, V3_0_1, V3_0_2, V3_0_3, V3_0_4, V3_1_0, V3_1_1, V3_1_2, V3_1_3, V3_1_4, V3_1_5, V3_1_6, V3_1_7)
37+
Stream.of(V3_0_0, V3_0_1, V3_0_2, V3_0_3, V3_0_4, V3_1_0, V3_1_1, V3_1_2, V3_1_3, V3_1_4, V3_1_5, V3_1_6, V3_1_7, V3_1_8)
3738
.collect(toMap(Version::toString, Function.identity()));
38-
public final static Version LATEST = V3_1_7;
39+
public final static Version LATEST = V3_1_8;
3940

4041
private final String origString;
4142
private final Integer major;

src/test/java/org/utplsql/api/testRunner/DynamicTestRunnerStatementTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -253,4 +253,15 @@ void version_3_1_7_parameters() throws SQLException {
253253
checkRandomTestOrder(true);
254254
checkTags(true);
255255
}
256+
257+
@Test
258+
void version_3_1_8_parameters() throws SQLException {
259+
initTestRunnerStatementForVersion(Version.V3_1_8);
260+
261+
checkBaseParameters();
262+
checkFailOnError(true);
263+
checkClientCharacterSet(true);
264+
checkRandomTestOrder(true);
265+
checkTags(true);
266+
}
256267
}

0 commit comments

Comments
 (0)