Enum sqlparser::ast::MergeClause
source · pub enum MergeClause {
MatchedUpdate {
predicate: Option<Expr>,
assignments: Vec<Assignment>,
},
MatchedDelete(Option<Expr>),
NotMatched {
predicate: Option<Expr>,
columns: Vec<Ident>,
values: Values,
},
}
Expand description
Variants§
Trait Implementations§
source§impl Clone for MergeClause
impl Clone for MergeClause
source§fn clone(&self) -> MergeClause
fn clone(&self) -> MergeClause
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MergeClause
impl Debug for MergeClause
source§impl Display for MergeClause
impl Display for MergeClause
source§impl Hash for MergeClause
impl Hash for MergeClause
source§impl Ord for MergeClause
impl Ord for MergeClause
source§fn cmp(&self, other: &MergeClause) -> Ordering
fn cmp(&self, other: &MergeClause) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<MergeClause> for MergeClause
impl PartialEq<MergeClause> for MergeClause
source§fn eq(&self, other: &MergeClause) -> bool
fn eq(&self, other: &MergeClause) -> bool
source§impl PartialOrd<MergeClause> for MergeClause
impl PartialOrd<MergeClause> for MergeClause
source§fn partial_cmp(&self, other: &MergeClause) -> Option<Ordering>
fn partial_cmp(&self, other: &MergeClause) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more