Account for mariadb versioning

reviewable/pr18780/r1
Toshio Kuratomi 10 years ago
parent 3c48320b29
commit 16a3bdaa7d

@ -182,6 +182,10 @@ def server_version_check(cursor):
version_str = result[0] version_str = result[0]
version = version_str.split('.') version = version_str.split('.')
# Currently we have no facility to handle new-style password update on
# mariadb and the old-style update continues to work
if version_str.lower().endswith('mariadb'):
return True
if (int(version[0]) <= 5 and int(version[1]) < 7): if (int(version[0]) <= 5 and int(version[1]) < 7):
return True return True
else: else:

Loading…
Cancel
Save