Enum iceberg_rust::table::TableType
source · pub enum TableType {
FileSystem(Arc<dyn ObjectStore>),
Metastore(Identifier, Arc<dyn Catalog>),
}
Expand description
Tables can be either one of following types:
- FileSystem(https://iceberg.apache.org/spec/#file-system-tables)
- Metastore(https://iceberg.apache.org/spec/#metastore-tables)
Variants§
FileSystem(Arc<dyn ObjectStore>)
Filesystem table
Metastore(Identifier, Arc<dyn Catalog>)
Metastore table