Class: Iceberg::GlueCatalog

Inherits:
Catalog
  • Object
show all
Defined in:
lib/iceberg/glue_catalog.rb

Instance Method Summary collapse

Methods inherited from Catalog

#create_namespace, #create_table, #drop_namespace, #drop_table, #inspect, #list_namespaces, #list_tables, #load_table, #namespace_exists?, #namespace_properties, #register_table, #rename_table, #sql, #table_exists?, #update_namespace

Constructor Details

#initialize(warehouse:) ⇒ GlueCatalog

warehouse is URI of S3 storage bucket



4
5
6
# File 'lib/iceberg/glue_catalog.rb', line 4

def initialize(warehouse:)
  @catalog = RbCatalog.new_glue(warehouse)
end