Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions vortex/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use vortex_array::dtype::session::DTypeSession;
// vortex::expr is in the process of having its dependencies inverted, and will eventually be
// pulled back out into a vortex_expr crate.
pub use vortex_array::expr;
use vortex_array::memory::MemorySession;
use vortex_array::optimizer::kernels::ArrayKernels;
pub use vortex_array::scalar_fn;
use vortex_array::scalar_fn::session::ScalarFnSession;
Expand Down Expand Up @@ -171,6 +172,7 @@ impl VortexSessionDefault for VortexSession {
.with::<StatsSession>()
.with::<ArrayKernels>()
.with::<AggregateFnSession>()
.with::<MemorySession>()
.with::<RuntimeSession>();

#[cfg(feature = "files")]
Expand Down
Loading