Jefffrey commented on code in PR #18044:
URL: https://github.com/apache/datafusion/pull/18044#discussion_r2431000704
##########
datafusion/common/src/lib.rs:
##########
@@ -108,6 +108,12 @@ pub use error::{
// The HashMap and HashSet implementations that should be used as the uniform
defaults
pub type HashMap<K, V, S = DefaultHashBuilder> = hashbrown::HashMap<K, V, S>;
pub type HashSet<T, S = DefaultHashBuilder> = hashbrown::HashSet<T, S>;
+pub mod hash_map {
+ pub use hashbrown::hash_map::Entry;
+}
+pub mod hash_set {
+ pub use hashbrown::hash_set::Entry;
+}
Review Comment:
Is this to avoid adding an explicit hashbrown dependency to
functions-aggregate?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]