Skip to content

Commit

Permalink
Merge branch 'main' into feature/templated-distributions
Browse files Browse the repository at this point in the history
  • Loading branch information
bpkroth authored Dec 1, 2023
2 parents c12e60a + 1f57a5c commit 3d3c9b2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
cache: 'maven'
Expand All @@ -64,7 +64,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
cache: 'maven'
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
rm -rf benchbase-sqlite.tgz
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: 'temurin'
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
rm -rf benchbase-mariadb.tgz
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: 'temurin'
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
rm -rf benchbase-mysql.tgz
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: 'temurin'
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
rm -rf benchbase-postgres.tgz
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: 'temurin'
Expand Down Expand Up @@ -370,7 +370,7 @@ jobs:
rm -rf benchbase-cockroachdb.tgz
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: 'temurin'
Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:
rm -rf benchbase-sqlserver.tgz
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: 'temurin'
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
We also acknowledge contributions from the following collaborators:

+ [Florian Funke](http://www3.in.tum.de/~funkef/)
+ [Michael Seibold](http://www3.in.tum.de/~seibold/)
+ [Michael Seibold](http://www3.in.tum.de/~seibold/)
+ [Oracle](https://github.com/oracle) (Copyright (c) 2023, Oracle and/or its affiliates.)
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ public List<Object[]> run(Connection conn, int source_id, int session_low, int s
finalResults.add(arr);
}
}
stmt.close();

return (finalResults);
}

Expand Down

0 comments on commit 3d3c9b2

Please sign in to comment.