Add support for Snowflake AT/BEFORE (#1667)

This commit is contained in:
Yoav Cohen 2025-01-19 12:08:45 +01:00 committed by GitHub
parent 44df6d6f92
commit 5da702fc19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 48 additions and 12 deletions

View file

@ -90,4 +90,9 @@ impl Dialect for MsSqlDialect {
fn supports_set_stmt_without_operator(&self) -> bool {
true
}
/// See: <https://learn.microsoft.com/en-us/sql/relational-databases/tables/querying-data-in-a-system-versioned-temporal-table>
fn supports_timestamp_versioning(&self) -> bool {
true
}
}