We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b562558 commit f8d7723Copy full SHA for f8d7723
catalogs/iceberg-glue-catalog/src/lib.rs
@@ -173,7 +173,7 @@ impl Catalog for GlueCatalog {
173
.into_iter()
174
.map(|x| Namespace::try_new(&[x.name; 1]))
175
.collect::<Result<Vec<_>, spec::error::Error>>()?;
176
- namespaces.extend(new.into_iter());
+ namespaces.extend(new);
177
178
token = result.next_token;
179
catalogs/iceberg-s3tables-catalog/src/lib.rs
@@ -185,7 +185,7 @@ impl Catalog for S3TablesCatalog {
185
186
.map(|x| Namespace::try_new(&x.namespace))
187
188
189
190
token = result.continuation_token;
191
0 commit comments