polars-plan 0.54.3

Lazy query engine for the Polars DataFrame library
1
2
3
4
5
6
7
8
9
10
11
#[derive(Clone, Debug, Hash, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "dsl-schema", derive(schemars::JsonSchema))]
pub enum RowEncodingVariant {
    Unordered,
    Ordered {
        descending: Option<Vec<bool>>,
        nulls_last: Option<Vec<bool>>,
        broadcast_nulls: Option<bool>,
    },
}