Skip to main content

kyu_executor/
lib.rs

1//! kyu-executor: physical operators, morsel scheduler.
2
3#[cfg(feature = "jit")]
4pub mod jit;
5
6pub mod batch_eval;
7pub mod context;
8pub mod data_chunk;
9pub mod execute;
10pub mod mapper;
11pub mod operators;
12pub mod physical_plan;
13pub mod result;
14pub mod value_vector;
15
16pub use context::{ExecutionContext, MockStorage, Storage};
17pub use data_chunk::DataChunk;
18pub use execute::{execute, execute_statement};
19pub use physical_plan::PhysicalOperator;
20pub use result::QueryResult;
21pub use value_vector::{SelectionVector, ValueVector};