Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 1.0.8
-
Component/s: Generic
-
Labels:None
-
Python Version:3.9.8
Description
Hi.
With any of Mariadb/python connector, it happends.
Below pseudo code(just repeated loop) make entire python process dead without any message.
just killed.
- pymysql never dead.
- the stored procedure has the one OUT parameter.
Please fix it asap.
-----------
for label_c, dic_c in data_f.items():
for label_p, dic_p in dic_c.items():
for s, dic in dic_p.items():
args = (
code,
0
)
cur.callproc('proc_insert_something', args)
-----------