File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/iceberg/src/catalog Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ pub trait Catalog: Debug + Sync + Send {
67
67
properties : HashMap < String , String > ,
68
68
) -> Result < ( ) > ;
69
69
70
- /// Drop a namespace from the catalog.
70
+ /// Drop a namespace from the catalog, or returns error if it doesn't exist .
71
71
async fn drop_namespace ( & self , namespace : & NamespaceIdent ) -> Result < ( ) > ;
72
72
73
73
/// List tables from namespace.
@@ -83,7 +83,7 @@ pub trait Catalog: Debug + Sync + Send {
83
83
/// Load table from the catalog.
84
84
async fn load_table ( & self , table : & TableIdent ) -> Result < Table > ;
85
85
86
- /// Drop a table from the catalog.
86
+ /// Drop a table from the catalog, or returns error if it doesn't exist .
87
87
async fn drop_table ( & self , table : & TableIdent ) -> Result < ( ) > ;
88
88
89
89
/// Check if a table exists in the catalog.
You can’t perform that action at this time.
0 commit comments