Skip to content

Commit 4d97970

Browse files
authored
Merge pull request #154 from StuartHadfield/master
Migrate from Denisenkom SQLServer driver to Microsoft
2 parents 12bc92e + 5232bd4 commit 4d97970

278 files changed

Lines changed: 90372 additions & 65679 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

go.mod

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ require (
77
github.com/ClickHouse/clickhouse-go/v2 v2.17.1
88
github.com/aws/aws-sdk-go v1.50.6
99
github.com/cenkalti/backoff v2.2.1+incompatible
10-
github.com/denisenkom/go-mssqldb v0.12.3
1110
github.com/go-kit/log v0.2.1
1211
github.com/go-sql-driver/mysql v1.8.1
1312
github.com/gobwas/glob v0.2.3
1413
github.com/jmoiron/sqlx v1.4.0
1514
github.com/lib/pq v1.10.9
15+
github.com/microsoft/go-mssqldb v1.8.0
1616
github.com/prometheus/client_golang v1.20.5
1717
github.com/prometheus/common v0.60.0
1818
github.com/robfig/cron/v3 v3.0.1
@@ -31,8 +31,8 @@ require (
3131
filippo.io/edwards25519 v1.1.0 // indirect
3232
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
3333
github.com/99designs/keyring v1.2.2 // indirect
34-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.1 // indirect
35-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.1 // indirect
34+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect
35+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
3636
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.1 // indirect
3737
github.com/ClickHouse/ch-go v0.61.2 // indirect
3838
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
@@ -76,6 +76,7 @@ require (
7676
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
7777
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
7878
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
79+
github.com/hashicorp/go-uuid v1.0.3 // indirect
7980
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
8081
github.com/jackc/pgconn v1.14.3 // indirect
8182
github.com/jackc/pgio v1.0.0 // indirect
@@ -84,6 +85,12 @@ require (
8485
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
8586
github.com/jackc/pgtype v1.14.1 // indirect
8687
github.com/jackc/pgx/v4 v4.18.3 // indirect
88+
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
89+
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
90+
github.com/jcmturner/gofork v1.7.6 // indirect
91+
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
92+
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
93+
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
8794
github.com/jmespath/go-jmespath v0.4.0 // indirect
8895
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect
8996
github.com/klauspost/compress v1.17.9 // indirect

go.sum

Lines changed: 51 additions & 27 deletions
Large diffs are not rendered by default.

job.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import (
1212

1313
_ "github.com/ClickHouse/clickhouse-go/v2" // register the ClickHouse driver
1414
"github.com/cenkalti/backoff"
15-
_ "github.com/denisenkom/go-mssqldb" // register the MS-SQL driver
15+
_ "github.com/microsoft/go-mssqldb" // register the MS-SQL driver
16+
_ "github.com/microsoft/go-mssqldb/integratedauth/krb5" // Register integrated auth for MS-SQL
1617
"github.com/go-kit/log"
1718
"github.com/go-kit/log/level"
1819
"github.com/go-sql-driver/mysql" // register the MySQL driver

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/ci.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/core.go

Lines changed: 20 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/etag.go

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/request.go

Lines changed: 53 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/response_error.go

Lines changed: 23 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)