MySQL Forums
Forum List  »  Connector/Python

Re: mysql-connector-python starting from 8.0.12 goes to infinite loop when iterates till the end of table
Posted by: Alexey Chernov
Date: May 02, 2020 09:45AM

Some more details. My Club table now contains 223 records. And this is what happens when I iterate through some subset of it:
Club.objects.all()[222:223] ok
Club.objects.all()[220:223] ok
Club.objects.all()[221:222] ok
Club.objects.all()[:223] infinite loop
Club.objects.all()[:222] infinite loop
Club.objects.all()[:201] infinite loop
Club.objects.all()[:200] ok

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.