Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,7 @@ public enum ConfVars {
"HMS Iceberg Catalog servlet authentication method (simple or jwt)."
),
ICEBERG_CATALOG_CACHE_EXPIRY("metastore.iceberg.catalog.cache.expiry",
"hive.metastore.iceberg.catalog.cache.expiry", 60_000L,
"hive.metastore.iceberg.catalog.cache.expiry", -1,
"HMS Iceberg Catalog cache expiry."
),
HTTPSERVER_THREADPOOL_MIN("hive.metastore.httpserver.threadpool.min",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import java.util.Map;
import java.util.Set;
import org.apache.iceberg.CachingCatalog;
import org.apache.iceberg.Schema;
import org.apache.iceberg.catalog.Catalog;
import org.apache.iceberg.catalog.Namespace;
import org.apache.iceberg.catalog.SupportsNamespaces;
Expand All @@ -48,6 +49,11 @@ public CATALOG hmsUnwrap() {
return nsCatalog;
}

@Override
public Catalog.TableBuilder buildTable(TableIdentifier identifier, Schema schema) {
return nsCatalog.buildTable(identifier, schema);
}

@Override
public void createNamespace(Namespace nmspc, Map<String, String> map) {
nsCatalog.createNamespace(nmspc, map);
Expand Down
Loading