Describe the bug
Using an SQLite connection with SqliteDialect, and run a query that uses a date extraction function like extract(year from date_column). The unparser rewrites this to date_part, but SQLite only supports strftime so the query fails.
To Reproduce
No response
Expected behavior
The unparser should re-write the query to strftime to correctly extract the desired date information.
Additional context
No response