-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parse server version x.y as x.0.y, when x is >= 10
Since PostgreSQL 10 the versioning scheme has changed. 10.x really means 10.0.x. While parsing 10.1 as (10, 1) may seem less confusing, in practice most version checks are written as version[:2], and we want to keep that behaviour consistent, i.e not fail a major version check due to a bugfix release.
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters