Skip to content

Commit

Permalink
[DuckDB] update DuckDB
Browse files Browse the repository at this point in the history
  • Loading branch information
edigonzales committed Dec 13, 2024
1 parent 182b264 commit 75d8ae0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ postgresqlVersion = "42.6.0"
sqliteJdbcVersion = "3.43.0.0"
derbyVersion = "10.13.1.1"
oracleVersion = "19.3.0.0"
duckdbVersion = "0.9.2"
duckdbVersion = "1.1.3"
junitVersion = "5.10.3"
junitTestContainersVersion = "1.19.8"
mockFtpServerVersion = "2.7.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,18 @@

public class SqlExecutorTaskDuckDbTest {

// DB-File erstellen.
// Tabelle erstellen und Werte inserten
// Parquet-Datei importieren
// GPKG importieren
@Test
public void multipleStuff_Ok() throws Exception {
// Prepare
File projectDirectory = new File(System.getProperty("user.dir") + "/src/integrationTest/jobs/SqlExecutorTaskDuckDb");
String dbName = "foo.duckdb";
Path pathToDatabase = Paths.get(projectDirectory.getPath(), dbName);

// Prepare
if (Files.exists(pathToDatabase)) {
Files.delete(pathToDatabase);
}

// Execute task
IntegrationTestUtil.executeTestRunner(projectDirectory);

// Check result
Expand Down

0 comments on commit 75d8ae0

Please sign in to comment.