Skip to content

Commit

Permalink
Loosen Microsoft SQL Server database compat. checks
Browse files Browse the repository at this point in the history
  • Loading branch information
HarveyKandola committed Jan 15, 2024
1 parent 1f462ed commit 599c53a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion edition/storage/sqlserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ func (p SQLServerProvider) VerfiyVersion(dbVersion string) (bool, string) {
return true, ""
}

return false, "Microsoft SQL Server 2016, 2017, 2019 or 2022 is required"
return true, ""

// return false, "Microsoft SQL Server 2016+ or SQL Azure is required"
}

// VerfiyCharacterCollation needs to ensure utf8.
Expand Down

0 comments on commit 599c53a

Please sign in to comment.