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

Function test_dictionary_all_nulls

arrow-array/src/array/dictionary_array.rs:1278–1285  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1276
1277 #[test]
1278 fn test_dictionary_all_nulls() {
1279 let test = vec![None, None, None];
1280 let array: DictionaryArray<Int32Type> = test.into_iter().collect();
1281 array
1282 .into_data()
1283 .validate_full()
1284 .expect("All null array has valid array data");
1285 }
1286
1287 #[test]
1288 fn test_dictionary_iter() {

Callers

nothing calls this directly

Calls 4

collectMethod · 0.80
validate_fullMethod · 0.80
into_iterMethod · 0.45
into_dataMethod · 0.45

Tested by

no test coverage detected