This commit is contained in:
yumoqing 2025-10-20 17:35:02 +08:00
parent b9a6724cbe
commit fdde66f74c

View File

@ -82,6 +82,7 @@ class SQLor(object):
self.sqlvs = sqlvs self.sqlvs = sqlvs
self.dbdesc = dbdesc.copy() self.dbdesc = dbdesc.copy()
self.unpassword() self.unpassword()
debug(f'--------{self.dbdesc=}----')
self.dbname = None self.dbname = None
self.writer = None self.writer = None
self.convfuncs = {} self.convfuncs = {}
@ -93,7 +94,6 @@ class SQLor(object):
if self.dbdesc.password: if self.dbdesc.password:
key=getConfig().password_key key=getConfig().password_key
self.dbdesc.password = aes_decode_b64(key, self.dbdesc.password) self.dbdesc.password = aes_decode_b64(key, self.dbdesc.password)
debug(f'--------{self.dbdesc=}----')
async def get_schema(self): async def get_schema(self):
def concat_idx_info(idxs): def concat_idx_info(idxs):