Extended dialect triat to support numeric prefixed identifiers (#1188)

Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
groobyming 2024-05-04 02:20:12 +08:00 committed by GitHub
parent 8e64b73e9d
commit 5ea9c01bb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 68 additions and 5 deletions

View file

@ -53,6 +53,10 @@ impl Dialect for MySqlDialect {
true
}
fn supports_numeric_prefix(&self) -> bool {
true
}
fn parse_infix(
&self,
parser: &mut crate::parser::Parser,