ci(s3select-query): inherit workspace lint policy (#5443)

This commit is contained in:
Zhengchao An
2026-07-29 23:31:11 +08:00
committed by GitHub
parent 962c11e6db
commit 94ee597721
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -25,6 +25,9 @@ keywords = ["s3-select", "query-engine", "rustfs", "Minio", "data-retrieval"]
categories = ["web-programming", "development-tools", "data-structures"]
documentation = "https://docs.rs/rustfs-s3select-query/latest/rustfs_s3select_query/"
[lints]
workspace = true
[dependencies]
rustfs-s3select-api = { workspace = true }
async-recursion = { workspace = true }
+1 -1
View File
@@ -76,7 +76,7 @@ impl ContextProviderExtension for MetadataProvider {
let table_handle = self.build_table_handle()?;
Ok(Arc::new(TableSourceAdapter::try_new(table_ref.clone(), table_name, table_handle)?))
Ok(Arc::new(TableSourceAdapter::try_new(table_ref, table_name, table_handle)?))
}
}