We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ff34d commit b9fd11dCopy full SHA for b9fd11d
vortex-vector/src/struct_/vector_mut.rs
@@ -487,7 +487,7 @@ mod tests {
487
struct_vec.append_nulls(2);
488
assert_eq!(struct_vec.len(), 7);
489
490
- // Verify final values include nulls.
+ // Verify final values include zeros.
491
if let VectorMut::Bool(bool_vec) = struct_vec.fields[1].clone() {
492
let values: Vec<_> = bool_vec.into_iter().collect();
493
assert_eq!(
@@ -498,8 +498,8 @@ mod tests {
498
Some(true),
499
Some(false),
500
501
- None,
502
- None
+ Some(false),
+ Some(false)
503
]
504
);
505
}
0 commit comments