Skip to content

Commit

Permalink
build(deps): bump duckdb version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Dec 19, 2024
1 parent 298aab5 commit 29c366b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin-jdbc-duckdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar {
}

dependencies {
implementation("org.duckdb:duckdb_jdbc:0.8.1")
implementation("org.duckdb:duckdb_jdbc:1.1.3")
implementation project(':plugin-jdbc')

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void multiSelect() throws Exception {
Queries task = Queries.builder()
.fetchType(FETCH)
.timeZoneId("Europe/Paris")
.parameters(Property.of(Map.of("age", "30")))
.parameters(Property.of(Map.of("age", 30)))
.sql("""
CREATE TABLE employee (id INTEGER PRIMARY KEY, name VARCHAR, age INTEGER);
CREATE TABLE laptop (id INTEGER PRIMARY KEY, brand VARCHAR, model VARCHAR);
Expand Down Expand Up @@ -78,7 +78,7 @@ void multiSelectFromExistingFileInUrl() throws Exception {
Queries task = Queries.builder()
.fetchType(FETCH)
.timeZoneId("Europe/Paris")
.parameters(Property.of(Map.of("age", "30")))
.parameters(Property.of(Map.of("age", 30)))
.url("jdbc:duckdb:"+ Objects.requireNonNull(resource).getPath())
.sql("""
CREATE TABLE employee (id INTEGER PRIMARY KEY, name VARCHAR, age INTEGER);
Expand Down
Binary file modified plugin-jdbc-duckdb/src/test/resources/db/duck.db
Binary file not shown.

0 comments on commit 29c366b

Please sign in to comment.