Skip to content

Commit f8d7723

Browse files
committed
fix clippy warnings
1 parent b562558 commit f8d7723

File tree

2 files changed

+2
-2
lines changed
  • catalogs
    • iceberg-glue-catalog/src
    • iceberg-s3tables-catalog/src

2 files changed

+2
-2
lines changed

catalogs/iceberg-glue-catalog/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl Catalog for GlueCatalog {
173173
.into_iter()
174174
.map(|x| Namespace::try_new(&[x.name; 1]))
175175
.collect::<Result<Vec<_>, spec::error::Error>>()?;
176-
namespaces.extend(new.into_iter());
176+
namespaces.extend(new);
177177

178178
token = result.next_token;
179179

catalogs/iceberg-s3tables-catalog/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ impl Catalog for S3TablesCatalog {
185185
.into_iter()
186186
.map(|x| Namespace::try_new(&x.namespace))
187187
.collect::<Result<Vec<_>, spec::error::Error>>()?;
188-
namespaces.extend(new.into_iter());
188+
namespaces.extend(new);
189189

190190
token = result.continuation_token;
191191

0 commit comments

Comments
 (0)