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

Function test_fixed_size_binary

arrow-array/src/ffi.rs:1561–1567  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1559
1560 #[test]
1561 fn test_fixed_size_binary() -> Result<()> {
1562 let values = vec![vec![10, 10, 10], vec![20, 20, 20], vec![30, 30, 30]];
1563 let array = FixedSizeBinaryArray::try_from_iter(values.into_iter())?;
1564
1565 let data = array.into_data();
1566 test_round_trip(&data)
1567 }
1568
1569 #[test]
1570 fn test_fixed_size_binary_with_nulls() -> Result<()> {

Callers

nothing calls this directly

Calls 3

test_round_tripFunction · 0.70
into_iterMethod · 0.45
into_dataMethod · 0.45

Tested by

no test coverage detected