MCPcopy Create free account
hub / github.com/apache/arrow-rs / test_list_equal

Function test_list_equal

arrow/tests/array_equal.rs:403–410  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

401
402#[test]
403fn test_list_equal() {
404 let a = create_list_array([Some(&[1, 2, 3]), Some(&[4, 5, 6])]);
405 let b = create_list_array([Some(&[1, 2, 3]), Some(&[4, 5, 6])]);
406 test_equal(&a, &b, true);
407
408 let b = create_list_array([Some(&[1, 2, 3]), Some(&[4, 5, 7])]);
409 test_equal(&a, &b, false);
410}
411
412#[test]
413fn test_empty_offsets_list_equal() {

Callers

nothing calls this directly

Calls 2

create_list_arrayFunction · 0.85
test_equalFunction · 0.85

Tested by

no test coverage detected