We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be8923 commit 01fa8eeCopy full SHA for 01fa8ee
1 file changed
vortex-array/src/patches.rs
@@ -26,7 +26,6 @@ use crate::ArrayVisitor;
26
use crate::DynArray;
27
use crate::ExecutionCtx;
28
use crate::IntoArray;
29
-use crate::LEGACY_SESSION;
30
use crate::ToCanonical;
31
use crate::VortexSessionExecute;
32
use crate::arrays::BoolArray;
@@ -190,7 +189,8 @@ impl Patches {
190
189
191
#[cfg(debug_assertions)]
192
{
193
- let mut ctx = LEGACY_SESSION.create_execution_ctx();
+ use crate::VortexSessionExecute;
+ let mut ctx = crate::LEGACY_SESSION.create_execution_ctx();
194
assert!(
195
crate::aggregate_fn::fns::is_sorted::is_sorted(&indices, &mut ctx)
196
.unwrap_or(false),
0 commit comments