Skip to content

Commit

Permalink
[test] fix variable warehouse of type org.apache.paimon.fs.Path (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuangchong authored Nov 24, 2023
1 parent 28c6089 commit cc6aa1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public void testMultiTablesCompactionMetrics(@TempDir java.nio.file.Path tempDir
throws Exception {
Path warehouse = new Path(TraceableFileIO.SCHEME + "://" + tempDir);
Options catalogOptions = new Options();
catalogOptions.set(CatalogOptions.WAREHOUSE, warehouse.getPath());
catalogOptions.set(CatalogOptions.WAREHOUSE, warehouse.toString());
catalogOptions.set(CatalogOptions.URI, "");
Catalog.Loader catalogLoader =
() -> CatalogFactory.createCatalog(CatalogContext.create(catalogOptions));
Expand Down

0 comments on commit cc6aa1d

Please sign in to comment.