chore: ⬆️ Vendor for new deps

This commit is contained in:
2026-02-07 15:51:20 +02:00
parent 88589e00e7
commit 47bf748fd5
128 changed files with 83822 additions and 29 deletions

15
vendor/github.com/microsoft/go-mssqldb/version.go generated vendored Normal file
View File

@@ -0,0 +1,15 @@
package mssql
import "fmt"
// Update this variable with the release tag before pushing the tag
// This value is written to the prelogin and login7 packets during a new connection
const driverVersion = "v1.9.6"
func getDriverVersion(ver string) uint32 {
var majorVersion uint32
var minorVersion uint32
var rev uint32
_, _ = fmt.Sscanf(ver, "v%d.%d.%d", &majorVersion, &minorVersion, &rev)
return (majorVersion << 24) | (minorVersion << 16) | rev
}