()
| 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() { |
nothing calls this directly
no test coverage detected