initial support for PostgreSQL 9.0 - #223

This commit is contained in:
Bernardo Damele
2011-04-11 22:02:00 +00:00
parent f4745a95ea
commit fdbd8bfe37
3 changed files with 15 additions and 2 deletions

View File

@@ -45,7 +45,9 @@ class Takeover(GenericTakeover):
banVer = kb.bannerFp["dbmsVersion"]
if banVer >= "8.4":
if banVer >= "9.0":
majorVer = "9.0"
elif banVer >= "8.4":
majorVer = "8.4"
elif banVer >= "8.3":
majorVer = "8.3"