This commit is contained in:
yumoqing 2025-10-19 12:06:32 +08:00
parent 0223b5f660
commit 91e93d778d

View File

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