Support DOUBLE data types with precision for Mysql (#1611)

This commit is contained in:
artorias1024 2024-12-20 01:11:39 +08:00 committed by GitHub
parent eae5629fb8
commit c973df35d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 21 additions and 9 deletions

View file

@ -8115,7 +8115,9 @@ impl<'a> Parser<'a> {
if self.parse_keyword(Keyword::PRECISION) {
Ok(DataType::DoublePrecision)
} else {
Ok(DataType::Double)
Ok(DataType::Double(
self.parse_exact_number_optional_precision_scale()?,
))
}
}
Keyword::TINYINT => {