Skip to content

Commit 2a6f905

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

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

vortex-array/src/arrays/struct_/vtable/reduce.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ use crate::IntoArray;
1616
use crate::arrays::ExprArray;
1717
use crate::arrays::StructArray;
1818
use crate::expr::Expression;
19+
use crate::expr::analysis::immediate_access::annotate_scope_access;
1920
use crate::expr::col;
2021
use crate::expr::root;
2122
use crate::expr::session::ExprSession;
2223
use crate::expr::transform::ExprOptimizer;
2324
use crate::expr::transform::PartitionedExpr;
24-
use crate::expr::transform::immediate_access::annotate_scope_access;
2525
use crate::expr::transform::partition;
2626
use crate::expr::transform::replace;
2727
use crate::expr::transform::replace_root_fields;

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ use vortex_error::VortexExpect;
77
use vortex_utils::aliases::hash_set::HashSet;
88

99
use crate::expr::Expression;
10+
use crate::expr::analysis::AnnotationFn;
11+
use crate::expr::analysis::Annotations;
12+
use crate::expr::descendent_annotation_union_set;
1013
use crate::expr::exprs::get_item::GetItem;
1114
use crate::expr::exprs::root::Root;
1215
use crate::expr::exprs::select::Select;
13-
use crate::expr::transform::annotations::AnnotationFn;
14-
use crate::expr::transform::annotations::Annotations;
15-
use crate::expr::transform::annotations::descendent_annotations;
1616

1717
pub type FieldAccesses<'a> = Annotations<'a, FieldName>;
1818

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ use crate::expr::exprs::get_item::get_item;
2323
use crate::expr::exprs::pack::pack;
2424
use crate::expr::exprs::root::root;
2525
use crate::expr::transform::ExprOptimizer;
26-
use crate::expr::transform::annotations::Annotation;
27-
use crate::expr::transform::annotations::AnnotationFn;
28-
use crate::expr::transform::annotations::Annotations;
29-
use crate::expr::transform::annotations::descendent_annotations;
3026
use crate::expr::traversal::NodeExt;
3127
use crate::expr::traversal::NodeRewriter;
3228
use crate::expr::traversal::Transformed;

vortex-layout/src/layouts/struct_/reader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ use vortex_array::expr::ExactExpr;
1717
use vortex_array::expr::Expression;
1818
use vortex_array::expr::Merge;
1919
use vortex_array::expr::Pack;
20+
use vortex_array::expr::annotate_scope_access;
2021
use vortex_array::expr::col;
2122
use vortex_array::expr::root;
2223
use vortex_array::expr::session::ExprSessionExt;
2324
use vortex_array::expr::transform::ExprOptimizer;
2425
use vortex_array::expr::transform::PartitionedExpr;
25-
use vortex_array::expr::transform::immediate_access::annotate_scope_access;
2626
use vortex_array::expr::transform::partition;
2727
use vortex_array::expr::transform::replace;
2828
use vortex_array::expr::transform::replace_root_fields;

vortex-scan/src/scan_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ use futures::future::BoxFuture;
99
use itertools::Itertools;
1010
use vortex_array::ArrayRef;
1111
use vortex_array::expr::Expression;
12+
use vortex_array::expr::analysis::immediate_access::immediate_scope_access;
1213
use vortex_array::expr::root;
1314
use vortex_array::expr::session::ExprSessionExt;
1415
use vortex_array::expr::transform::ExprOptimizer;
15-
use vortex_array::expr::transform::immediate_access::immediate_scope_access;
1616
use vortex_array::iter::ArrayIterator;
1717
use vortex_array::iter::ArrayIteratorAdapter;
1818
use vortex_array::stats::StatsSet;

0 commit comments

Comments
 (0)