Skip to content
Merged
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
4 changes: 2 additions & 2 deletions crates/iceberg/src/catalog/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pub trait Catalog: Debug + Sync + Send {
properties: HashMap<String, String>,
) -> Result<()>;

/// Drop a namespace from the catalog.
/// Drop a namespace from the catalog, or returns error if it doesn't exist.
async fn drop_namespace(&self, namespace: &NamespaceIdent) -> Result<()>;

/// List tables from namespace.
Expand All @@ -83,7 +83,7 @@ pub trait Catalog: Debug + Sync + Send {
/// Load table from the catalog.
async fn load_table(&self, table: &TableIdent) -> Result<Table>;

/// Drop a table from the catalog.
/// Drop a table from the catalog, or returns error if it doesn't exist.
async fn drop_table(&self, table: &TableIdent) -> Result<()>;

/// Check if a table exists in the catalog.
Expand Down
Loading