mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-03 22:08:16 +00:00
Add support for MYSQL's CREATE TABLE SELECT
expr (#1515)
This commit is contained in:
parent
6d907d3adc
commit
2bb81444bd
4 changed files with 47 additions and 1 deletions
|
@ -97,6 +97,11 @@ impl Dialect for MySqlDialect {
|
|||
fn supports_limit_comma(&self) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
/// see <https://dev.mysql.com/doc/refman/8.4/en/create-table-select.html>
|
||||
fn supports_create_table_select(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
/// `LOCK TABLES`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue