You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dictionary comparison kernels fail to account for nulls nested within dictionaries
To Reproduce
fn test_dictionary_nested_nulls() {
let keys = Int32Array::from(vec![0, 1, 2]);
let v1 = Arc::new(Int32Array::from(vec![Some(0), None, Some(2)]));
let a = DictionaryArray::new(keys.clone(), v1);
let v2 = Arc::new(Int32Array::from(vec![None, Some(0), Some(2)]));
let b = DictionaryArray::new(keys, v2);
let r = eq_dyn(&a, &b).unwrap();
assert_eq!(r.null_count(), 2);
}
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered:
Describe the bug
The dictionary comparison kernels fail to account for nulls nested within dictionaries
To Reproduce
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: