You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
execute_defaults assumes the query.parameters can't be a list, which is the case in a multirow insert like:
q = table.insert().values([
{'val': 12},
{'val': 13},
])
conn.execute(q)