Skip to content

Commit

Permalink
Fix logical merge conflict (#2121)
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Jul 21, 2022
1 parent 1805b30 commit db91031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-testing/src/lib.rs
Expand Up @@ -642,7 +642,7 @@ fn array_from_json(
.unwrap();
b.append_value(&decimal)
}
_ => b.append_null(),
_ => Ok(b.append_null()),
}?;
}
Ok(Arc::new(b.finish()))
Expand Down

0 comments on commit db91031

Please sign in to comment.