You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore(trino): edit expression for timestamptz
* feat(rewriter): integrate
* feat(format): datetime to string with specify time zone
* feat(rewriter): rewrite timestamp literal with session time zone
* feat(rewriter): rewrite timestamp literal to cast as timestamp with time zone
Avoid sqlglot convert type incorrectly like
`TIMESTAMP '2024-01-01 00:00:00 America/Bahia_Banderas'` to
`CAST('2024-01-01 00:00:00 America/Bahia_Banderas' AS TIMESTAMP` from
Trino to Postgres.
If the statement is `CAST('2024-01-01 00:00:00 America/Bahia_Banderas'
AS TIMESTAMP WITH TIME ZONE`, sqlglot will convert it to
`CAST('2024-01-01 00:00:00 America/Bahia_Banderas' AS TIMESTAMP WITH
TIME ZONE)` correctly.
* feat(rewriter): rewrite cast as timestamp to timestamp with time zone
* chore(mssql): time zone should be a time, and update skip reason
* feat(mysql): use convert_tz instead of cast
* chore(mssql): time zone should be time and cast should with column name
* fix(clickhouse): rewrite by toDateTime
* chore(header-sql-dialect): move the http header about sql dialect in rewriter
* feat(v3): implement headers
* test(v3): implement should wait rust
* fix: data_source could be None
* fix(test): adjust expected
* test(duckdb): add test case
* test: align timestamp with time zone expression
* chore(rewriter): use WrenException instead of NoSuchElementException
* feat(rewriter): add test case and adjust datetime pattern
* chore(comment): fix comment
* chore(api): use StrEnum instead of string
* chore(comment): add comment
No description provided.
The text was updated successfully, but these errors were encountered: