Skip to content

Commit

Permalink
chore: re-enable gc (#15125)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Mar 18, 2024
1 parent e21bd27 commit 8cf46e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/polars-ops/src/chunked_array/gather/chunked.rs
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ unsafe fn take_unchecked_binview(
buffers,
validity,
None,
);
// .maybe_gc();
)
.maybe_gc();

let mut out = BinaryChunked::with_chunk(ca.name(), arr);
let sorted_flag = _update_gather_sorted_flag(ca.is_sorted_flag(), sorted);
Expand Down Expand Up @@ -480,8 +480,8 @@ unsafe fn take_unchecked_binview_opt(ca: &BinaryChunked, by: &[NullableChunkId])
buffers,
validity,
None,
);
// .maybe_gc();
)
.maybe_gc();

BinaryChunked::with_chunk(ca.name(), arr)
}
Expand Down

0 comments on commit 8cf46e6

Please sign in to comment.