MsSQL SET for session params (#1646)

This commit is contained in:
Yoav Cohen 2025-01-11 10:51:01 +01:00 committed by GitHub
parent 0c3b6c0974
commit 3b4dc0f227
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 271 additions and 0 deletions

View file

@ -85,4 +85,9 @@ impl Dialect for MsSqlDialect {
fn supports_end_transaction_modifier(&self) -> bool {
true
}
/// See: <https://learn.microsoft.com/en-us/sql/t-sql/statements/set-statements-transact-sql>
fn supports_set_stmt_without_operator(&self) -> bool {
true
}
}