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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Compute byte span of an ast fragment

Compute the minimal span containing both self and other

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.