We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb61adc commit f75e85aCopy full SHA for f75e85a
parquet/src/util/hash_util.rs
@@ -33,7 +33,12 @@ fn hash_(data: &[u8], seed: u32) -> u32 {
33
}
34
35
36
- #[cfg(any(target_arch = "aarch64", target_arch = "arm", target_arch = "riscv64"))]
+ #[cfg(any(
37
+ target_arch = "aarch64",
38
+ target_arch = "arm",
39
+ target_arch = "riscv64",
40
+ target_arch = "wasm32"
41
+ ))]
42
unsafe {
43
murmur_hash2_64a(data, seed as u64) as u32
44
0 commit comments