Skip to content

Commit

Permalink
Tweak print_row
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed May 28, 2024
1 parent e7b32c8 commit 90bd86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-row/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2174,7 +2174,7 @@ mod tests {
let formatter = ArrayFormatter::try_new(x.values.as_ref(), &opts).unwrap();
formatter.value(row).to_string()
}
false => String::new(),
false => "NULL".to_string(),
})
.collect();
t.join(",")
Expand Down

0 comments on commit 90bd86e

Please sign in to comment.