Skip to content

Commit 2237a66

Browse files
author
B Vadlamani
committed
init_fmt_chec
1 parent 3fc1e0a commit 2237a66

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • datafusion/physical-plan/src/joins

datafusion/physical-plan/src/joins/utils.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2966,7 +2966,8 @@ mod tests {
29662966
assert_eq!(res_right, UInt32Array::from(vec![0, 1, 2, 3]));
29672967

29682968
// Test with NULLs
2969-
let left_col = Arc::new(Int32Array::from(vec![Some(1), None, Some(3)])) as ArrayRef;
2969+
let left_col =
2970+
Arc::new(Int32Array::from(vec![Some(1), None, Some(3)])) as ArrayRef;
29702971
let right_col =
29712972
Arc::new(Int32Array::from(vec![Some(1), None, Some(4)])) as ArrayRef;
29722973

0 commit comments

Comments
 (0)