From 9807a5ae72a91b4f88a998f19f23628ecf6231ae Mon Sep 17 00:00:00 2001 From: Andrew Gazelka Date: Fri, 25 Oct 2024 05:18:08 -0700 Subject: [PATCH] fix hash name --- src/daft-sql/src/modules/hashing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daft-sql/src/modules/hashing.rs b/src/daft-sql/src/modules/hashing.rs index f83a297d37..37fbceb3a0 100644 --- a/src/daft-sql/src/modules/hashing.rs +++ b/src/daft-sql/src/modules/hashing.rs @@ -95,7 +95,7 @@ impl TryFrom for MinHashFunction { }) }) .transpose()? - .unwrap_or("murmur3hash3"); + .unwrap_or("murmurhash3"); Ok(Self { num_hashes,