Skip to content

Commit

Permalink
Test against MS SQL Server 2019-CTP3.1 (Ubuntu)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhui committed Aug 19, 2019
1 parent 9479362 commit d068374
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion database/sqlserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@

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

## Note about driver support
## Driver Support

### Which go-mssqldb driver to us?

Please note that the deprecated `mssql` driver is not supported. Please use the newer `sqlserver` driver.
See https://github.com/denisenkom/go-mssqldb#deprecated for more information.

### Official Support by migrate

Versions of MS SQL Server 2019 newer than CTP3.1 are not officially supported since there are issues testing against the Docker image.
For more info, see: https://github.com/golang-migrate/migrate/issues/160#issuecomment-522433269
2 changes: 1 addition & 1 deletion database/sqlserver/sqlserver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (
// Container versions: https://mcr.microsoft.com/v2/mssql/server/tags/list
specs = []dktesting.ContainerSpec{
{ImageName: "mcr.microsoft.com/mssql/server:2017-latest-ubuntu", Options: opts},
{ImageName: "mcr.microsoft.com/mssql/server:2019-latest", Options: opts},
{ImageName: "mcr.microsoft.com/mssql/server:2019-CTP3.1-ubuntu", Options: opts},
}
)

Expand Down

0 comments on commit d068374

Please sign in to comment.