Skip to content

Commit

Permalink
fix(sqlserver): Fix max bind values of SQL Server for chunking in sim…
Browse files Browse the repository at this point in the history
…ple cases (#4747)
  • Loading branch information
janpio committed May 13, 2024
1 parent 879beb2 commit 2c4bd67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quaint/src/connector/connection_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ impl SqlFamily {
#[cfg(feature = "sqlite")]
SqlFamily::Sqlite => 999,
#[cfg(feature = "mssql")]
SqlFamily::Mssql => 2099,
SqlFamily::Mssql => 2098,
}
}

Expand Down

0 comments on commit 2c4bd67

Please sign in to comment.