From c746c275d61a000cf83f49696e4835f68b71b61e Mon Sep 17 00:00:00 2001 From: phaneendra Date: Sun, 18 Jan 2026 17:29:32 +0530 Subject: [PATCH 1/2] Changed clippy.toml and added std hashmap and hashset to disallowed types --- clippy.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clippy.toml b/clippy.toml index ea3609b574c06..a8506de0de10a 100644 --- a/clippy.toml +++ b/clippy.toml @@ -5,6 +5,8 @@ disallowed-methods = [ disallowed-types = [ { path = "std::time::Instant", reason = "Use `datafusion_common::instant::Instant` instead for WASM compatibility" }, + { path = "std::collections::HashMap", reason = "Use `datafusion_common::HashMap` instead to ensure a single, uniform HashMap implementation (re-exported from hashbrown)" }, + { path = "std::collections::HashSet", reason = "Use `datafusion_common::HashSet` instead to ensure a single, uniform HashSet implementation (re-exported from hashbrown)" }, ] # Lowering the threshold to help prevent stack overflows (default is 16384) From 5ce781905a7bd854d423fcd23274e3cb1240c311 Mon Sep 17 00:00:00 2001 From: phaneendra Date: Mon, 19 Jan 2026 21:28:39 +0530 Subject: [PATCH 2/2] Trigger CI