Skip to content

Commit c022fb4

Browse files
committed
datafusion-common: split hash_utils hasher paths
Keep the default RandomState path concrete while adding dedicated BuildHasher entry points and tests. Also wire the parquet feature through object_store/tokio so datafusion-common all-features clippy builds cleanly.
1 parent 12821fc commit c022fb4

2 files changed

Lines changed: 576 additions & 196 deletions

File tree

datafusion/common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ parquet_encryption = [
4949
]
5050
force_hash_collisions = []
5151
recursive_protection = ["dep:recursive"]
52-
parquet = ["dep:parquet"]
52+
parquet = ["dep:parquet", "object_store"]
5353
sql = ["sqlparser"]
5454

5555
[[bench]]
@@ -77,7 +77,7 @@ indexmap = { workspace = true }
7777
itertools = { workspace = true }
7878
libc = "0.2.180"
7979
log = { workspace = true }
80-
object_store = { workspace = true, optional = true }
80+
object_store = { workspace = true, optional = true, features = ["tokio"] }
8181
parquet = { workspace = true, optional = true, default-features = true }
8282
recursive = { workspace = true, optional = true }
8383
sqlparser = { workspace = true, optional = true }

0 commit comments

Comments
 (0)