Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lwwmanning committed Dec 30, 2024
1 parent 4ab7c96 commit 76e5672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vortex-array/src/data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ impl ArrayData {

#[cfg(feature = "canonical_counter")]
pub(crate) fn inc_canonical_counter(&self) {
let prev = match &self.0 {
let prev = match self.0.as_ref() {
InnerArrayData::Owned(o) => o
.canonical_counter
.fetch_add(1, std::sync::atomic::Ordering::Relaxed),
Expand Down

0 comments on commit 76e5672

Please sign in to comment.