Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqi1129 committed Jan 8, 2025
1 parent a722080 commit 03395c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.util.Collections;
import java.util.Map;
import org.apache.gravitino.Catalog;
import org.apache.gravitino.Catalog.Type;
import org.apache.gravitino.abs.fs.AzureFileSystemProvider;
import org.apache.gravitino.catalog.hadoop.fs.FileSystemUtils;
import org.apache.gravitino.credential.CredentialConstants;
Expand Down Expand Up @@ -94,7 +93,8 @@ public void startUp() throws Exception {
properties.put(FILESYSTEM_PROVIDERS, AzureFileSystemProvider.ABS_PROVIDER_NAME);

Catalog catalog =
metalake.createCatalog(catalogName, Type.FILESET, "hadoop", "catalog comment", properties);
metalake.createCatalog(
catalogName, Catalog.Type.FILESET, "hadoop", "catalog comment", properties);
Assertions.assertTrue(metalake.catalogExists(catalogName));

catalog.asSchemas().createSchema(schemaName, "schema comment", properties);
Expand Down

0 comments on commit 03395c8

Please sign in to comment.