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

Function test_mutable_set_null_bits_oob

arrow-buffer/src/buffer/mutable.rs:1407–1410  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1405 #[test]
1406 #[should_panic = "out of bounds for buffer of length"]
1407 fn test_mutable_set_null_bits_oob() {
1408 let mut buffer = MutableBuffer::new(64);
1409 buffer.set_null_bits(1, buffer.capacity());
1410 }
1411
1412 #[test]
1413 #[should_panic = "out of bounds for buffer of length"]

Callers

nothing calls this directly

Calls 2

set_null_bitsMethod · 0.80
capacityMethod · 0.45

Tested by

no test coverage detected