This commit is contained in:
yumoqing 2025-10-19 12:08:16 +08:00
parent 91e93d778d
commit 67571f1af8

View File

@ -452,7 +452,8 @@ class SQLor(object):
async def tables(self):
sqlstring = self.tablesSQL()
ret = []
ret = await self._get_data(sqlstring,{})
async with r in self._get_data(sqlstring,{}):
ret.append(r)
return ret
def indexesSQL(self,tablename):