Bug in _iud_query()
when data
is set and len(data) > chunksize
#3
Labels
bug
Something isn't working
_iud_query()
when data
is set and len(data) > chunksize
#3
When
data
is notNone
andlen(data) > chunk_size
, the value ofaffected
will be the number of rows affected by the last chunked insert. Instead, need to keep a running total ofcursor.rowcount
when looping over chunksMySQL-DBConnector/dbconnector/dbconnector.py
Lines 413 to 428 in f5dd972
Suggested fix:
The text was updated successfully, but these errors were encountered: