Skip to content

Commit 75d3d3a

Browse files
committed
Overtime events
1 parent 2367f5b commit 75d3d3a

File tree

9 files changed

+8
-11
lines changed

9 files changed

+8
-11
lines changed

vortex-expr/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ workspace = true
2222
[dependencies]
2323
arbitrary = { workspace = true, optional = true }
2424
arcref = { workspace = true }
25-
async-trait = { workspace = true }
26-
dyn-hash = { workspace = true }
27-
futures = { workspace = true }
2825
itertools = { workspace = true }
2926
parking_lot = { workspace = true }
3027
paste = { workspace = true }

vortex-expr/src/exprs/between.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ use vortex_dtype::DType::Bool;
1111
use vortex_error::{VortexExpect, VortexResult, vortex_bail};
1212
use vortex_proto::expr as pb;
1313

14+
use crate::expression::Expression;
1415
use crate::exprs::binary::Binary;
1516
use crate::exprs::operators::Operator;
16-
use crate::v2::Expression;
1717
use crate::{ChildName, ExprId, ExprInstance, StatsCatalog, VTable, VTableExt};
1818

1919
/// An optimized scalar expression to compute whether values fall between two bounds.

vortex-expr/src/exprs/binary.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ use vortex_dtype::DType;
1010
use vortex_error::{VortexExpect, VortexResult, vortex_bail};
1111
use vortex_proto::expr as pb;
1212

13+
use crate::expression::Expression;
1314
use crate::exprs::literal::lit;
1415
use crate::exprs::operators::Operator;
15-
use crate::v2::Expression;
1616
use crate::{ChildName, ExprId, ExprInstance, StatsCatalog, VTable, VTableExt};
1717

1818
pub struct Binary;

vortex-expr/src/exprs/cast.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use vortex_dtype::{DType, FieldPath};
1111
use vortex_error::{VortexExpect, VortexResult, vortex_bail, vortex_err};
1212
use vortex_proto::expr as pb;
1313

14-
use crate::v2::Expression;
14+
use crate::expression::Expression;
1515
use crate::{ChildName, ExprId, ExprInstance, StatsCatalog, VTable, VTableExt};
1616

1717
/// A cast expression that converts values to a target data type.

vortex-expr/src/exprs/root.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use vortex_array::stats::Stat;
88
use vortex_dtype::{DType, FieldPath};
99
use vortex_error::{VortexExpect, VortexResult, vortex_bail};
1010

11-
use crate::v2::Expression;
11+
use crate::expression::Expression;
1212
use crate::{ChildName, ExprId, ExprInstance, StatsCatalog, VTable, VTableExt};
1313

1414
/// An expression that returns the full scope of the expression evaluation.

vortex-expr/src/exprs/select.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ use vortex_error::{VortexExpect, VortexResult, vortex_bail, vortex_err};
1111
use vortex_proto::expr::select_opts::Opts;
1212
use vortex_proto::expr::{FieldNames as ProtoFieldNames, SelectOpts};
1313

14+
use crate::expression::Expression;
1415
use crate::field::DisplayFieldNames;
15-
use crate::v2::Expression;
1616
use crate::{ChildName, ExprId, ExprInstance, VTable, VTableExt};
1717

1818
#[derive(Debug, Clone, PartialEq, Eq, Hash)]

vortex-expr/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ mod analysis;
2222
#[cfg(feature = "arbitrary")]
2323
pub mod arbitrary;
2424
pub mod display;
25+
mod expression;
2526
mod exprs;
2627
mod field;
2728
pub mod forms;
@@ -32,14 +33,13 @@ mod scope_vars;
3233
pub mod session;
3334
pub mod transform;
3435
pub mod traversal;
35-
mod v2;
3636
mod vtable;
3737

3838
pub use analysis::*;
39+
pub use expression::*;
3940
pub use exprs::*;
4041
pub use scope::*;
4142
pub use scope_vars::*;
42-
pub use v2::*;
4343
use vortex_dtype::{DType, FieldName};
4444
use vortex_error::VortexUnwrap;
4545
use vortex_utils::aliases::hash_set::HashSet;

vortex-expr/src/vtable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use vortex_array::ArrayRef;
1212
use vortex_dtype::{DType, FieldPath};
1313
use vortex_error::{VortexExpect, VortexResult, vortex_err};
1414

15-
use crate::v2::{ExprInstance, Expression};
15+
use crate::expression::{ExprInstance, Expression};
1616
use crate::{ExprId, StatsCatalog};
1717

1818
/// The vtable trait for a Vortex expression.

0 commit comments

Comments
 (0)