MCPcopy 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

newFunction · 0.85
compare_with_deltaFunction · 0.85
extendMethod · 0.45
mapMethod · 0.45
to_stringMethod · 0.45
countMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…