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
After updating some rows using cursor.execute, cursor.rowcount is not set to the actual number of affected rows, but rather (actual_rows + 1) * 2**32 - 1. I imagine this is due to some mix-up with respect to integer size in the C implementation.
The text was updated successfully, but these errors were encountered:
Using the following packages as reported by
yum list
:After updating some rows using cursor.execute, cursor.rowcount is not set to the actual number of affected rows, but rather
(actual_rows + 1) * 2**32 - 1
. I imagine this is due to some mix-up with respect to integer size in the C implementation.The text was updated successfully, but these errors were encountered: