Enum NullTreatment
pub enum NullTreatment {
IgnoreNulls,
RespectNulls,
}Expand description
Specifies Ignore / Respect NULL within window functions.
For example
FIRST_VALUE(column2) IGNORE NULLS OVER (PARTITION BY column1)
How NULL values are treated in certain window functions.
Variants§
IgnoreNulls
Ignore NULL values (e.g. IGNORE NULLS).
RespectNulls
Respect NULL values (e.g. RESPECT NULLS).