This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new d391b859c Minor: remove unecessary clippy allow (#4008)
d391b859c is described below
commit d391b859c44e1c366eb4da5e8cabd199336f4243
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Oct 30 07:34:24 2022 -0400
Minor: remove unecessary clippy allow (#4008)
---
datafusion/core/tests/user_defined_plan.rs | 1 -
1 file changed, 1 deletion(-)
diff --git a/datafusion/core/tests/user_defined_plan.rs
b/datafusion/core/tests/user_defined_plan.rs
index c93b7c3eb..7e9ece36b 100644
--- a/datafusion/core/tests/user_defined_plan.rs
+++ b/datafusion/core/tests/user_defined_plan.rs
@@ -540,7 +540,6 @@ fn remove_lowest_value(top_values: &mut BTreeMap<i64,
String>) {
}
}
-#[allow(clippy::unnecessary_wraps)]
fn accumulate_batch(
input_batch: &RecordBatch,
mut top_values: BTreeMap<i64, String>,