Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CALCITE-5938] Update HSQLDB to Version 2.7.2 (using JDK8 JAR, default supports JDK11+) #3392

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion babel/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {

testImplementation("net.hydromatic:quidem")
testImplementation("net.hydromatic:scott-data-hsqldb")
testImplementation("org.hsqldb:hsqldb")
testImplementation("org.hsqldb:hsqldb::jdk8")
testImplementation("org.incava:java-diff")
testImplementation(project(":testkit"))

Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ dependencies {
testImplementation("net.hydromatic:quidem")
testImplementation("org.apache.calcite.avatica:avatica-server")
testImplementation("org.apache.commons:commons-pool2")
testImplementation("org.hsqldb:hsqldb")
testImplementation("org.hsqldb:hsqldb::jdk8")
testImplementation("sqlline:sqlline")
testImplementation(kotlin("stdlib-jdk8"))
testImplementation(kotlin("test"))
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ h2.version=2.1.210
hadoop.version=2.7.5
hamcrest-date.version=2.0.4
hamcrest.version=2.1
hsqldb.version=2.5.2
hsqldb.version=2.7.2
httpclient.version=4.5.9
httpcore.version=4.4.11
hydromatic.tpcds.version=0.4
Expand Down
2 changes: 1 addition & 1 deletion piglet/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
testImplementation(project(":testkit"))
testImplementation("net.hydromatic:scott-data-hsqldb")
testImplementation("org.apache.hadoop:hadoop-client")
testImplementation("org.hsqldb:hsqldb")
testImplementation("org.hsqldb:hsqldb::jdk8")
testRuntimeOnly("org.slf4j:slf4j-log4j12")
annotationProcessor("org.immutables:value")
compileOnly("org.immutables:value-annotations")
Expand Down
2 changes: 1 addition & 1 deletion plus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
implementation("net.hydromatic:chinook-data-hsqldb")
implementation("net.hydromatic:tpcds")
implementation("org.apache.calcite.avatica:avatica-server")
implementation("org.hsqldb:hsqldb")
implementation("org.hsqldb:hsqldb::jdk8")

testImplementation(project(":testkit"))
testImplementation("org.incava:java-diff")
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
testImplementation(project(":testkit"))
testImplementation("net.hydromatic:quidem")
testImplementation("net.hydromatic:scott-data-hsqldb")
testImplementation("org.hsqldb:hsqldb")
testImplementation("org.hsqldb:hsqldb::jdk8")
testImplementation("org.incava:java-diff")
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl")
}
Expand Down
2 changes: 1 addition & 1 deletion testkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
implementation("org.apache.commons:commons-lang3")
implementation("org.apache.commons:commons-pool2")
implementation("org.hamcrest:hamcrest")
implementation("org.hsqldb:hsqldb")
implementation("org.hsqldb:hsqldb::jdk8")
annotationProcessor("org.immutables:value")
compileOnly("org.immutables:value-annotations")
implementation("org.incava:java-diff")
Expand Down
2 changes: 1 addition & 1 deletion ubenchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
jmhImplementation("org.openjdk.jmh:jmh-core")
jmhImplementation("org.openjdk.jmh:jmh-generator-annprocess")
jmhImplementation(project(":testkit"))
jmhImplementation("org.hsqldb:hsqldb")
jmhImplementation("org.hsqldb:hsqldb::jdk8")
}

// See https://github.com/melix/jmh-gradle-plugin
Expand Down
Loading