Class PolarisGenericTableCatalog

java.lang.Object
org.apache.polaris.service.catalog.generic.PolarisGenericTableCatalog
All Implemented Interfaces:
GenericTableCatalog

public class PolarisGenericTableCatalog extends Object implements GenericTableCatalog
  • Constructor Summary

    Constructors
    Constructor
    Description
    PolarisGenericTableCatalog(org.apache.polaris.core.persistence.PolarisMetaStoreManager metaStoreManager, org.apache.polaris.core.context.CallContext callContext, org.apache.polaris.core.persistence.resolver.PolarisResolutionManifestCatalogView resolvedEntityView)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.polaris.core.entity.table.GenericTableEntity
    createGenericTable(org.apache.iceberg.catalog.TableIdentifier tableIdentifier, String format, String doc, Map<String,String> properties)
    Create a generic table with the specified identifier
    boolean
    dropGenericTable(org.apache.iceberg.catalog.TableIdentifier tableIdentifier)
    Drop a generic table entity with a given identifier
    void
    initialize(String name, Map<String,String> properties)
    Should be called before other methods
    List<org.apache.iceberg.catalog.TableIdentifier>
    listGenericTables(org.apache.iceberg.catalog.Namespace namespace)
    List all generic tables under a specific namespace
    org.apache.polaris.core.entity.table.GenericTableEntity
    loadGenericTable(org.apache.iceberg.catalog.TableIdentifier tableIdentifier)
    Retrieve a generic table entity with a given identifier

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • PolarisGenericTableCatalog

      public PolarisGenericTableCatalog(org.apache.polaris.core.persistence.PolarisMetaStoreManager metaStoreManager, org.apache.polaris.core.context.CallContext callContext, org.apache.polaris.core.persistence.resolver.PolarisResolutionManifestCatalogView resolvedEntityView)
  • Method Details