Skip to content

Commit

Permalink
fix: Bad null handling in unordered row encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Mar 5, 2025
1 parent 32042c2 commit 6f4d3c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-row/src/variable/no_order.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub unsafe fn decode_variable_no_order(
validity.push(sentinel != 0xFF);
if sentinel == 0xFF {
array.push_value_ignore_validity("");
break;
continue;
}

let length = if sentinel < 0xFE {
Expand Down

0 comments on commit 6f4d3c0

Please sign in to comment.