NullTreatment in sqlparser::ast - Rust

Skip to main content

Enum NullTreatment 

Source

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).

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for NullTreatment

§

impl RefUnwindSafe for NullTreatment

§

impl Send for NullTreatment

§

impl Sync for NullTreatment

§

impl Unpin for NullTreatment

§

impl UnwindSafe for NullTreatment

Blanket Implementations§