File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
catalogs/iceberg-s3tables-catalog/src Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ use aws_sdk_s3tables::{
33 error:: SdkError ,
44 operation:: {
55 create_namespace:: CreateNamespaceError , create_table:: CreateTableError ,
6- delete_namespace:: DeleteNamespaceError , get_namespace :: GetNamespaceError ,
7- delete_table :: DeleteTableError , get_table:: GetTableError ,
6+ delete_namespace:: DeleteNamespaceError , delete_table :: DeleteTableError ,
7+ get_namespace :: GetNamespaceError , get_table:: GetTableError ,
88 get_table_metadata_location:: GetTableMetadataLocationError ,
99 list_namespaces:: ListNamespacesError , list_tables:: ListTablesError ,
1010 update_table_metadata_location:: UpdateTableMetadataLocationError ,
Original file line number Diff line number Diff line change @@ -123,7 +123,8 @@ impl Catalog for S3TablesCatalog {
123123 }
124124 /// Check if a namespace exists
125125 async fn namespace_exists ( & self , namespace : & Namespace ) -> Result < bool , IcebergError > {
126- Ok ( self . client
126+ Ok ( self
127+ . client
127128 . get_namespace ( )
128129 . table_bucket_arn ( & self . arn )
129130 . namespace ( namespace[ 0 ] . as_str ( ) )
You can’t perform that action at this time.
0 commit comments