Replace Method and CompositeAccess with CompoundFieldAccess (#1716)

This commit is contained in:
Ifeanyi Ubah 2025-02-19 18:49:42 +01:00 committed by GitHub
parent c75a992621
commit 3e90a18f6d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 348 additions and 264 deletions

View file

@ -46,6 +46,10 @@ impl Dialect for MsSqlDialect {
true
}
fn supports_outer_join_operator(&self) -> bool {
true
}
fn supports_connect_by(&self) -> bool {
true
}
@ -63,10 +67,6 @@ impl Dialect for MsSqlDialect {
false
}
fn supports_methods(&self) -> bool {
true
}
fn supports_named_fn_args_with_colon_operator(&self) -> bool {
true
}