Add MySql, BigQuery to all dialects (#697)

* Add MySql, BigQuery to all dialects

* move unsupported on mysql from common
This commit is contained in:
omer-shtivi 2022-11-07 22:32:47 +02:00 committed by GitHub
parent f7817bc7c2
commit 0428ac742b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 1200 additions and 164 deletions

View file

@ -142,6 +142,8 @@ pub fn all_dialects() -> TestedDialects {
Box::new(SnowflakeDialect {}),
Box::new(HiveDialect {}),
Box::new(RedshiftSqlDialect {}),
Box::new(MySqlDialect {}),
Box::new(BigQueryDialect {}),
],
}
}