pub struct CreateMaterializedViewStatement {
pub name: QualifiedName,
pub base_table: QualifiedName,
pub if_not_exists: bool,
pub projection: Projection,
pub selection: Option<Expression>,
pub partition_keys: Vec<String>,
pub clustering_columns: Vec<String>,
pub compact_storage: bool,
pub clustering_order: Vec<(String, bool)>,
pub view_properties: Vec<Property>,
}Expand description
CREATE MATERIALIZED VIEW statement
Fields§
§name: QualifiedName§base_table: QualifiedName§if_not_exists: bool§projection: Projection§selection: Option<Expression>WHERE clause
partition_keys: Vec<String>§clustering_columns: Vec<String>§compact_storage: bool§clustering_order: Vec<(String, bool)>§view_properties: Vec<Property>Trait Implementations§
Source§impl PartialEq for CreateMaterializedViewStatement
impl PartialEq for CreateMaterializedViewStatement
Source§fn eq(&self, other: &CreateMaterializedViewStatement) -> bool
fn eq(&self, other: &CreateMaterializedViewStatement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateMaterializedViewStatement
Auto Trait Implementations§
impl Freeze for CreateMaterializedViewStatement
impl RefUnwindSafe for CreateMaterializedViewStatement
impl Send for CreateMaterializedViewStatement
impl Sync for CreateMaterializedViewStatement
impl Unpin for CreateMaterializedViewStatement
impl UnwindSafe for CreateMaterializedViewStatement
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