We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd9c8f commit 12a826fCopy full SHA for 12a826f
1 file changed
vortex-array/src/executor.rs
@@ -21,7 +21,8 @@ use crate::DynArray;
21
use crate::IntoArray;
22
use crate::matcher::Matcher;
23
use crate::optimizer::ArrayOptimizer;
24
-use crate::vtable::{upcast_array, VTable};
+use crate::vtable::VTable;
25
+use crate::vtable::upcast_array;
26
27
/// Maximum number of iterations to attempt when executing an array before giving up and returning
28
/// an error.
@@ -405,7 +406,7 @@ impl ExecutionResult {
405
406
}
407
408
- pub fn done_upcast<V: VTable>(arr: Arc<V::Array>) ->Self {
409
+ pub fn done_upcast<V: VTable>(arr: Arc<V::Array>) -> Self {
410
Self {
411
array: upcast_array::<V>(arr),
412
step: ExecutionStep::Done,
0 commit comments