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 {
6767 properties : HashMap < String , String > ,
6868 ) -> Result < ( ) > ;
6969
70- /// Drop a namespace from the catalog.
70+ /// Drop a namespace from the catalog, or returns error if it doesn't exist .
7171 async fn drop_namespace ( & self , namespace : & NamespaceIdent ) -> Result < ( ) > ;
7272
7373 /// List tables from namespace.
@@ -83,7 +83,7 @@ pub trait Catalog: Debug + Sync + Send {
8383 /// Load table from the catalog.
8484 async fn load_table ( & self , table : & TableIdent ) -> Result < Table > ;
8585
86- /// Drop a table from the catalog.
86+ /// Drop a table from the catalog, or returns error if it doesn't exist .
8787 async fn drop_table ( & self , table : & TableIdent ) -> Result < ( ) > ;
8888
8989 /// Check if a table exists in the catalog.
You can’t perform that action at this time.
0 commit comments