Skip to content

Commit 9382028

Browse files
authored
Fix LEGACY_SESSION removal conflict (#8560)
1 parent dab39bf commit 9382028

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • vortex-array/src/arrays/interleave

vortex-array/src/arrays/interleave/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ mod tests {
679679
InterleaveArray::try_new(vec![value.clone(), value], array_indices, row_indices)?
680680
.into_array();
681681

682-
let mut ctx = LEGACY_SESSION.create_execution_ctx();
682+
let mut ctx = array_session().create_execution_ctx();
683683
let err = interleaved
684684
.execute::<Canonical>(&mut ctx)
685685
.err()
@@ -700,7 +700,7 @@ mod tests {
700700
InterleaveArray::try_new(vec![value.clone(), value], array_indices, row_indices)?
701701
.into_array();
702702

703-
let mut ctx = LEGACY_SESSION.create_execution_ctx();
703+
let mut ctx = array_session().create_execution_ctx();
704704
let err = interleaved
705705
.execute::<Canonical>(&mut ctx)
706706
.err()

0 commit comments

Comments
 (0)