Bug #5065
affected rows is invalid for last page.
Start date:
2017-04-19
Due date:
% Done:
70%
Estimated time:
Description
in ext_lib/underdark/libs/sqltalk/mysql/cursor.py
if totalcount and limit is not None: # and limit == len(result): result.affected = self._Execute('SELECT FOUND_ROWS()')[0][0]
Should be:
if totalcount and limit is not None: result.affected = self._Execute('SELECT FOUND_ROWS()')[0][0]
History
#1 Updated by Jan Klopper over 7 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 70
Resolved in #342