mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-14 03:54:59 +00:00
Add support for MySQL's INSERT INTO ... SET syntax (#1641)
This commit is contained in:
parent
4c6af0ae4f
commit
8cfc46277f
7 changed files with 43 additions and 20 deletions
|
@ -98,10 +98,15 @@ impl Dialect for MySqlDialect {
|
|||
true
|
||||
}
|
||||
|
||||
/// see <https://dev.mysql.com/doc/refman/8.4/en/create-table-select.html>
|
||||
/// See: <https://dev.mysql.com/doc/refman/8.4/en/create-table-select.html>
|
||||
fn supports_create_table_select(&self) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
/// See: <https://dev.mysql.com/doc/refman/8.4/en/insert.html>
|
||||
fn supports_insert_set(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
/// `LOCK TABLES`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue