pub struct Qualify {
pub this: Expression,
}Expand description
Represent a QUALIFY clause for filtering on window function results.
Supported by Snowflake, BigQuery, DuckDB, and Databricks. The predicate
typically references a window function (e.g.
QUALIFY ROW_NUMBER() OVER (PARTITION BY id ORDER BY ts DESC) = 1).
Fields§
§this: ExpressionThe filter predicate over window function results.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Qualify
impl<'de> Deserialize<'de> for Qualify
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Qualify
Auto Trait Implementations§
impl Freeze for Qualify
impl RefUnwindSafe for Qualify
impl Send for Qualify
impl Sync for Qualify
impl Unpin for Qualify
impl UnwindSafe for Qualify
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more