Returns an Iceberg REST Catalog client for an analytics bucket, used to manage the namespaces and tables (the warehouse) inside it.
analyticsCatalog() returns an IcebergRestCatalog scoped to a single analytics bucket. Use it to create and manage namespaces and tables within that bucket.The identifier of the analytics bucket (the warehouse) whose namespaces and tables you want to manage.
Requests server side access delegation for the catalog operations.
final catalog = supabase
.storage
.analyticsCatalog('my-analytics-bucket');
await catalog.createNamespace(['analytics']);