Make GenericDialect support from-first syntax (#1911)

This commit is contained in:
Simon Vandel Sillesen 2025-07-01 13:19:40 +02:00 committed by GitHub
parent abd80f9ecb
commit 9ffc546870
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,6 +112,10 @@ impl Dialect for GenericDialect {
true true
} }
fn supports_from_first_select(&self) -> bool {
true
}
fn supports_asc_desc_in_column_definition(&self) -> bool { fn supports_asc_desc_in_column_definition(&self) -> bool {
true true
} }