Add support for MySQL's INSERT INTO ... SET syntax (#1641)

This commit is contained in:
Yoav Cohen 2025-01-06 20:13:38 +01:00 committed by GitHub
parent 4c6af0ae4f
commit 8cfc46277f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 43 additions and 20 deletions

View file

@ -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`