pub struct Pushdown {
pub sql: String,
pub order_table: Option<String>,
}Expand description
A pushdown plan: SQL whose execution is provably identical to
the Quarb query’s — plus the table whose primary key must order
the rows (None for a single aggregate row, where order is
moot). The driver appends the ORDER BY, since the key lives in
its catalog.
Fields§
§sql: String§order_table: Option<String>Auto Trait Implementations§
impl Freeze for Pushdown
impl RefUnwindSafe for Pushdown
impl Send for Pushdown
impl Sync for Pushdown
impl Unpin for Pushdown
impl UnsafeUnpin for Pushdown
impl UnwindSafe for Pushdown
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