qail-core 0.27.9

AST-native query builder - type-safe expressions, zero SQL strings
Documentation
use crate::ast::{Condition, LogicalOp, SortOrder};

/// A cage (constraint block) in the query.
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub struct Cage {
    /// Kind of constraint.
    pub kind: CageKind,
    /// Conditions within this cage.
    pub conditions: Vec<Condition>,
    /// Logical operator joining conditions.
    pub logical_op: LogicalOp,
}

/// The type of cage.
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub enum CageKind {
    /// WHERE filter.
    Filter,
    /// SET/INSERT payload.
    Payload,
    /// ORDER BY.
    Sort(SortOrder),
    /// LIMIT.
    Limit(usize),
    /// OFFSET.
    Offset(usize),
    /// TABLESAMPLE.
    Sample(usize),
    /// Window QUALIFY.
    Qualify,
    /// GROUP BY.
    Partition,
}