Skip to content

Commit 9cd3e06

Browse files
committed
small mods for 2023
1 parent 727d5e9 commit 9cd3e06

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Note: This should be run, once Maven has build correctly the target directory.
22

3-
FROM rockylinux:8.6
3+
FROM rockylinux:9
44

55
RUN dnf -y update
66

77
RUN dnf -y install epel-release \
8-
java-11-openjdk-headless \
8+
java-17-openjdk-headless \
99
dnf-plugins-core \
1010
python3
1111
RUN dnf config-manager --set-enabled powertools

podman-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22

33
mvn || exit 1
4-
podman build -t benchmarksql:6.0-dev --http-proxy .
4+
podman build -t benchmarksql:6.0-rc1 --http-proxy .

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.github.pgsql-io</groupId>
66
<artifactId>benchmarksql</artifactId>
7-
<version>6.0.0-SNAPSHOT</version>
7+
<version>6.0.0</version>
88
<name>A TPC-C like test tool</name>
99
<description>BenchmarkSQL is a TPC-C fair-use implementation.</description>
1010

@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.postgresql</groupId>
3535
<artifactId>postgresql</artifactId>
36-
<version>42.2.19</version>
36+
<version>42.7.1</version>
3737
</dependency>
3838

3939
<!-- Oracle db driver -->

src/main/java/com/github/pgsqlio/benchmarksql/jtpcc/jTPCC.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ public jTPCC() throws FileNotFoundException {
134134
log.warn("main, BenchmarkSQL v{}", jTPCCConfig.JTPCCVERSION);
135135
log.info("main, +-------------------------------------------------------------+");
136136
log.info("main, (c) 2003, Raul Barbosa");
137-
log.info("main, (c) 2004-2014, Denis Lussier");
138-
log.info("main, (c) 2016-2019, Jan Wieck");
137+
log.info("main, (c) 2004-2023, Denis Lussier");
138+
log.info("main, (c) 2016-2023, Jan Wieck");
139139
log.info("main, +-------------------------------------------------------------+");
140140
log.info("main, ");
141141
String iDBType = getProp(ini, "db");

0 commit comments

Comments
 (0)