Fix typo in Dialect::supports_eq_alias_assigment (#1478)

This commit is contained in:
Andrew Lamb 2024-11-06 10:47:01 -05:00 committed by GitHub
parent e2197eeca9
commit a9a9d58c38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -582,7 +582,7 @@ pub trait Dialect: Debug + Any {
/// SELECT col_alias = col FROM tbl;
/// SELECT col_alias AS col FROM tbl;
/// ```
fn supports_eq_alias_assigment(&self) -> bool {
fn supports_eq_alias_assignment(&self) -> bool {
false
}