1
2
3
4
5
6
7
8
9
10
pub mod executors;
#[cfg(any(feature = "list_eval", feature = "pivot"))]
pub(crate) mod exotic;
pub mod planner;
#[cfg(feature = "streaming")]
pub(crate) mod streaming;

use polars_core::prelude::*;

use crate::prelude::*;