From 906073a516e1857f24200695fabb936390e09bcf Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sun, 19 Oct 2025 16:42:19 +0800 Subject: [PATCH] bugfix --- sqlor/sor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlor/sor.py b/sqlor/sor.py index 0a2401a..9ec7d21 100755 --- a/sqlor/sor.py +++ b/sqlor/sor.py @@ -324,6 +324,7 @@ class SQLor(object): fields = [i[0].lower() for i in cur.description] while True: rec = await self.fetchone(cur) + debug(f'{rec=}, {tpye(rec)}') if rec is None: break if isinstance(rec, dict):