This commit is contained in:
2021-12-05 19:22:53 +03:00
parent e633afac1e
commit 4588d8e4c3

View File

@@ -146,7 +146,7 @@ class FlUpdater(BaseUpdater):
async with self.mysql_pool.acquire() as conn: async with self.mysql_pool.acquire() as conn:
async with conn.cursor() as cursor: async with conn.cursor() as cursor:
await cursor.execute( await cursor.execute(
"SELECT AvtorId, FirstName, MiddleName, LastName FROM libavtorname;" "SELECT AvtorId, FirstName, LastName, MiddleName FROM libavtorname;"
) )
while (rows := await cursor.fetchmany(32)): while (rows := await cursor.fetchmany(32)):