Skip to content

Commit fbe582c

Browse files
committed
Merge remote-tracking branch 'pgsql-io/master'
2 parents aa98a17 + 9cd3e06 commit fbe582c

5 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:9.3
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 crb

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 .

podman-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ podman run --rm \
88
--userns=keep-id \
99
--volume="./service_data:/service_data" \
1010
-w "/benchmarksql" \
11-
localhost/benchmarksql:6.0-dev
11+
localhost/benchmarksql:6.0-rc1
1212

pom.xml

Lines changed: 1 addition & 1 deletion
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

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

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

0 commit comments

Comments
 (0)