Skip to content

Commit

Permalink
[misc] parsing MySQL server version that didn't have any additional c…
Browse files Browse the repository at this point in the history
…omment
  • Loading branch information
rusher committed Sep 27, 2017
1 parent 776446e commit 81403bf
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -1163,6 +1163,9 @@ private void parseVersion() {
val = val * 10 + car - 48;
}
}

//serverVersion finished by number like "5.5.57", assign patchVersion
if (type == 2) patchVersion = val;
}

public int getMajorServerVersion() {
Expand Down

0 comments on commit 81403bf

Please sign in to comment.