Skip to content

Commit 12a826f

Browse files
committed
fix
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent ecd9c8f commit 12a826f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

vortex-array/src/executor.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ use crate::DynArray;
2121
use crate::IntoArray;
2222
use crate::matcher::Matcher;
2323
use crate::optimizer::ArrayOptimizer;
24-
use crate::vtable::{upcast_array, VTable};
24+
use crate::vtable::VTable;
25+
use crate::vtable::upcast_array;
2526

2627
/// Maximum number of iterations to attempt when executing an array before giving up and returning
2728
/// an error.
@@ -405,7 +406,7 @@ impl ExecutionResult {
405406
}
406407
}
407408

408-
pub fn done_upcast<V: VTable>(arr: Arc<V::Array>) ->Self {
409+
pub fn done_upcast<V: VTable>(arr: Arc<V::Array>) -> Self {
409410
Self {
410411
array: upcast_array::<V>(arr),
411412
step: ExecutionStep::Done,

0 commit comments

Comments
 (0)