Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/datafusion
/ test_string
Function
test_string
datafusion/functions-aggregate/src/hyperloglog.rs:341–345 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
339
340
#[test]
341
fn test_string() {
342
let mut hll = HyperLogLog::<String>::new();
343
hll.extend((0..1000).map(|i| i.to_string()));
344
compare_with_delta(hll.count(), 1000);
345
}
346
347
#[test]
348
fn test_empty_merge() {
Callers
nothing calls this directly
Calls
6
new
Function · 0.85
compare_with_delta
Function · 0.85
extend
Method · 0.45
map
Method · 0.45
to_string
Method · 0.45
count
Method · 0.45
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…