Skip to content

Commit d068374

Browse files
committed
Test against MS SQL Server 2019-CTP3.1 (Ubuntu)
1 parent 9479362 commit d068374

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

database/sqlserver/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,14 @@
1919

2020
See https://github.com/denisenkom/go-mssqldb for full parameter list.
2121

22-
## Note about driver support
22+
## Driver Support
23+
24+
### Which go-mssqldb driver to us?
2325

2426
Please note that the deprecated `mssql` driver is not supported. Please use the newer `sqlserver` driver.
2527
See https://github.com/denisenkom/go-mssqldb#deprecated for more information.
28+
29+
### Official Support by migrate
30+
31+
Versions of MS SQL Server 2019 newer than CTP3.1 are not officially supported since there are issues testing against the Docker image.
32+
For more info, see: https://github.com/golang-migrate/migrate/issues/160#issuecomment-522433269

database/sqlserver/sqlserver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var (
3030
// Container versions: https://mcr.microsoft.com/v2/mssql/server/tags/list
3131
specs = []dktesting.ContainerSpec{
3232
{ImageName: "mcr.microsoft.com/mssql/server:2017-latest-ubuntu", Options: opts},
33-
{ImageName: "mcr.microsoft.com/mssql/server:2019-latest", Options: opts},
33+
{ImageName: "mcr.microsoft.com/mssql/server:2019-CTP3.1-ubuntu", Options: opts},
3434
}
3535
)
3636

0 commit comments

Comments
 (0)