Handle DictCursor

Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
E.S. Rosenberg a.k.a. Keeper of the Keys 2025-03-11 15:18:53 +02:00
parent 72482fc5ad
commit e6dde5843a

View file

@ -58,12 +58,15 @@ def user_is_locked(cursor, user, host):
# Per discussions on irc:libera.chat:#maria the query may return up to 2 rows but "ACCOUNT LOCK" should always be in the first row.
result = cursor.fetchone()
from pprint import pprint
pprint(result)
# ACCOUNT LOCK does not have to be the last option in the CREATE USER query.
# Need to handle both DictCursor and non-DictCursor
if type(result) == type([]):
if result[0] and result[0].find('ACCOUNT LOCK') > 0:
return True
elif type(result) == type({}):
for res in result.values():
if res.find('ACCOUNT LOCK') > 0:
return True
return False