Support parsing scientific notation (such as 10e5) (#768)

This commit is contained in:
Jeffrey 2022-12-29 00:28:53 +11:00 committed by GitHub
parent 2d801c9fb6
commit 2c20ec0be5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 118 additions and 0 deletions

View file

@ -144,6 +144,7 @@ pub fn all_dialects() -> TestedDialects {
Box::new(RedshiftSqlDialect {}),
Box::new(MySqlDialect {}),
Box::new(BigQueryDialect {}),
Box::new(SQLiteDialect {}),
],
}
}