Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1751d68 commit 02114aeCopy full SHA for 02114ae
3 files changed
.travis.yml
@@ -29,18 +29,19 @@ env:
29
- UTPLSQL_VERSION="v3.1.3"
30
- UTPLSQL_VERSION="v3.1.6"
31
- UTPLSQL_VERSION="v3.1.7"
32
+ - UTPLSQL_VERSION="v3.1.8"
33
- UTPLSQL_VERSION="develop"
34
UTPLSQL_FILE="utPLSQL"
35
36
matrix:
37
include:
- - env: UTPLSQL_VERSION="v3.1.7"
38
+ - env: UTPLSQL_VERSION="v3.1.8"
39
jdk: openjdk9
40
41
jdk: openjdk10
42
43
jdk: openjdk11
44
45
jdk: openjdk12
46
47
before_cache:
src/main/java/org/utplsql/api/Version.java
@@ -32,10 +32,11 @@ public class Version implements Comparable<Version> {
public final static Version V3_1_5 = new Version("3.1.5", 3, 1, 5, 2707, true);
public final static Version V3_1_6 = new Version("3.1.6", 3, 1, 6, 2729, true);
public final static Version V3_1_7 = new Version("3.1.7", 3, 1, 7, 3085, true);
+ public final static Version V3_1_8 = new Version("3.1.7", 3, 1, 8, 3188, true);
private final static Map<String, Version> knownVersions =
- 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)
+ 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)
.collect(toMap(Version::toString, Function.identity()));
- public final static Version LATEST = V3_1_7;
+ public final static Version LATEST = V3_1_8;
private final String origString;
private final Integer major;
src/test/java/org/utplsql/api/testRunner/DynamicTestRunnerStatementTest.java
@@ -253,4 +253,15 @@ void version_3_1_7_parameters() throws SQLException {
253
checkRandomTestOrder(true);
254
checkTags(true);
255
}
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
+ }
267
0 commit comments