Make GenericDialect support from-first syntax

The docs for `GenericDialect` says that is can be permissive
This commit is contained in:
Simon Vandel Sillesen 2025-06-29 16:33:43 +02:00
parent 3bc94234df
commit e1caf3f6c0

View file

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