This is an automated email from the ASF dual-hosted git repository.
jonah pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 313f47f30c ci: fix clippy error (#10723)
313f47f30c is described below
commit 313f47f30c96d60cd187bbdcd26999ca8d48c609
Author: Jonah Gao <[email protected]>
AuthorDate: Thu May 30 23:56:29 2024 +0800
ci: fix clippy error (#10723)
---
datafusion/core/src/datasource/listing/helpers.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/core/src/datasource/listing/helpers.rs
b/datafusion/core/src/datasource/listing/helpers.rs
index b531cf8369..822a667838 100644
--- a/datafusion/core/src/datasource/listing/helpers.rs
+++ b/datafusion/core/src/datasource/listing/helpers.rs
@@ -786,7 +786,7 @@ mod tests {
assert_eq!(
evaluate_partition_prefix(
partitions,
- &[col("a").eq(lit("foo")).and((col("b").eq(lit("bar"))))],
+ &[col("a").eq(lit("foo")).and(col("b").eq(lit("bar")))],
),
Some(Path::from("a=foo/b=bar")),
);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]