Add support for parsing MsSql alias with equals (#1467)

This commit is contained in:
Yoav Cohen 2024-10-20 20:12:39 +02:00 committed by GitHub
parent 7c20d4ae1f
commit 1dd7d26fbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 50 additions and 0 deletions

View file

@ -49,4 +49,8 @@ impl Dialect for MsSqlDialect {
fn supports_connect_by(&self) -> bool {
true
}
fn supports_eq_alias_assigment(&self) -> bool {
true
}
}