pub struct Replace<'a> {
pub replace_span: Span,
pub flags: Vec<ReplaceFlag>,
pub into_span: Option<Span>,
pub table: Vec<Identifier<'a>>,
pub columns: Vec<Identifier<'a>>,
pub values: Option<(Span, Vec<Vec<Expression<'a>>>)>,
pub select: Option<Select<'a>>,
pub set: Option<(Span, Vec<(Identifier<'a>, Expression<'a>)>)>,
}
Expand description
Representation of replace Statement
let sql = "REPLACE INTO t2 VALUES (1,'Leopard'),(2,'Dog')";
let stmt = parse_statement(sql, &mut issues, &options);
let r: Replace = match stmt {
Some(Statement::Replace(r)) => r,
_ => panic!("We should get an replace statement")
};
assert!(r.table[0].as_str() == "t2");
println!("{:#?}", r.values.unwrap())
Fields
replace_span: Span
Span of “REPLACE”
flags: Vec<ReplaceFlag>
Flags specified after “REPLACE”
into_span: Option<Span>
Span of “INTO” if specified
table: Vec<Identifier<'a>>
Table to replace into
columns: Vec<Identifier<'a>>
List of columns to put values into
values: Option<(Span, Vec<Vec<Expression<'a>>>)>
Span of “VALUES” and values to put into columns if specified
select: Option<Select<'a>>
Select expression to put into columns if specified
set: Option<(Span, Vec<(Identifier<'a>, Expression<'a>)>)>
Span of “SET” and list of key, value pairs to set if specified
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Replace<'a>
impl<'a> Send for Replace<'a>
impl<'a> Sync for Replace<'a>
impl<'a> Unpin for Replace<'a>
impl<'a> UnwindSafe for Replace<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more