Skip to content

Commit

Permalink
Merge pull request #251 from chmp/release/0.12.2
Browse files Browse the repository at this point in the history
Release/0.12.2
  • Loading branch information
chmp authored Oct 26, 2024
2 parents 32c1e2d + ab38471 commit 067885a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion serde_arrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_arrow"
version = "0.12.1"
version = "0.12.2"
authors = ["Christopher Prohm <[email protected]>"]
edition = "2021"
description = "Convert sequences of Rust objects to Arrow arrays and back again"
Expand Down
2 changes: 1 addition & 1 deletion serde_arrow/src/internal/deserialization/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub fn check_supported_list_layout<'a, O: Offset>(
fail!("Unsupported: list offsets are assumed to be monotonically increasing");
}
if let Some(validity) = validity.as_ref() {
if !bitset_is_set(&validity, i)? && (next - curr) != 0 {
if !bitset_is_set(validity, i)? && (next - curr) != 0 {
fail!("Unsupported: lists with data in null values are currently not supported in deserialization");
}
}
Expand Down

0 comments on commit 067885a

Please sign in to comment.