polars_error/
constants.rs1#[cfg(feature = "python")]
3pub static TRUE: &str = "True";
4#[cfg(feature = "python")]
5pub static FALSE: &str = "False";
6
7#[cfg(not(feature = "python"))]
8pub static TRUE: &str = "true";
9#[cfg(not(feature = "python"))]
10pub static FALSE: &str = "false";
11
12#[cfg(not(feature = "python"))]
13pub static LENGTH_LIMIT_MSG: &str =
14 "Polars' maximum length reached. Consider compiling with 'bigidx' feature.";
15#[cfg(feature = "python")]
16pub static LENGTH_LIMIT_MSG: &str =
17 "Polars' maximum length reached. Consider installing 'polars-u64-idx'.";