Skip to content

Commit

Permalink
fix hash name
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgazelka committed Oct 25, 2024
1 parent d5769f7 commit 9807a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-sql/src/modules/hashing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl TryFrom<SQLFunctionArguments> for MinHashFunction {
})

Check warning on line 95 in src/daft-sql/src/modules/hashing.rs

View check run for this annotation

Codecov / codecov/patch

src/daft-sql/src/modules/hashing.rs#L91-L95

Added lines #L91 - L95 were not covered by tests
})
.transpose()?
.unwrap_or("murmur3hash3");
.unwrap_or("murmurhash3");

Ok(Self {
num_hashes,
Expand Down

0 comments on commit 9807a5a

Please sign in to comment.