Skip to content

Commit 2cd0ea0

Browse files
committed
wip
Signed-off-by: Joe Isaacs <[email protected]>
1 parent e0eb083 commit 2cd0ea0

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

vortex-array/src/expr/analysis/labeling.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// SPDX-FileCopyrightText: Copyright the Vortex contributors
33

4-
use vortex_error::{VortexExpect, VortexResult};
4+
use vortex_error::VortexExpect;
5+
use vortex_error::VortexResult;
56
use vortex_utils::aliases::hash_map::HashMap;
67

78
use crate::expr::Expression;
8-
use crate::expr::traversal::{NodeExt, NodeVisitor, TraversalOrder};
9+
use crate::expr::traversal::NodeExt;
10+
use crate::expr::traversal::NodeVisitor;
11+
use crate::expr::traversal::TraversalOrder;
912

1013
/// Label each node in an expression tree using a bottom-up traversal.
1114
///

vortex-array/src/expr/transform/partition.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ use vortex_error::VortexResult;
1515
use vortex_utils::aliases::hash_map::HashMap;
1616

1717
use crate::expr::Expression;
18-
use crate::expr::analysis::{
19-
Annotation, AnnotationFn, Annotations, descendent_annotation_union_set,
20-
};
18+
use crate::expr::analysis::Annotation;
19+
use crate::expr::analysis::AnnotationFn;
20+
use crate::expr::analysis::Annotations;
21+
use crate::expr::analysis::descendent_annotation_union_set;
2122
use crate::expr::exprs::get_item::get_item;
2223
use crate::expr::exprs::pack::pack;
2324
use crate::expr::exprs::root::root;

0 commit comments

Comments
 (0)