pub struct Analyze {
pub table_name: ObjectName,
pub partitions: Option<Vec<Expr>>,
pub for_columns: bool,
pub columns: Vec<Ident>,
pub cache_metadata: bool,
pub noscan: bool,
pub compute_statistics: bool,
pub has_table_keyword: bool,
}Expand description
ANALYZE TABLE statement (Hive-specific)
Fields§
§table_name: ObjectName§partitions: Option<Vec<Expr>>§for_columns: bool§columns: Vec<Ident>§cache_metadata: bool§noscan: bool§compute_statistics: bool§has_table_keyword: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for Analyze
impl<'de> Deserialize<'de> for Analyze
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
Source§impl Ord for Analyze
impl Ord for Analyze
Source§impl PartialOrd for Analyze
impl PartialOrd for Analyze
Source§impl VisitMut for Analyze
impl VisitMut for Analyze
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for Analyze
impl StructuralPartialEq for Analyze
Auto Trait Implementations§
impl Freeze for Analyze
impl RefUnwindSafe for Analyze
impl Send for Analyze
impl Sync for Analyze
impl Unpin for Analyze
impl UnwindSafe for Analyze
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