chore: ⬆️ Vendor for new deps
This commit is contained in:
18
vendor/github.com/microsoft/go-mssqldb/mssql_go118pre.go
generated
vendored
Normal file
18
vendor/github.com/microsoft/go-mssqldb/mssql_go118pre.go
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
//go:build !go1.18
|
||||
// +build !go1.18
|
||||
|
||||
package mssql
|
||||
|
||||
import (
|
||||
"database/sql/driver"
|
||||
)
|
||||
|
||||
// newRetryableError returns an error that allows the database/sql package
|
||||
// to automatically retry the failed query. Versions of Go lower than 1.18
|
||||
// compare directly to the sentinel error driver.ErrBadConn to determine
|
||||
// whether or not a failed query can be retried. Therefore, we replace the
|
||||
// actual error with driver.ErrBadConn, enabling retry but losing the error
|
||||
// details.
|
||||
func newRetryableError(err error) error {
|
||||
return driver.ErrBadConn
|
||||
}
|
||||
Reference in New Issue
Block a user