diff --git a/django_roa/db/query.py b/django_roa/db/query.py index 28cba55..6a175ad 100644 --- a/django_roa/db/query.py +++ b/django_roa/db/query.py @@ -196,6 +196,10 @@ def __repr__(self): # METHODS THAT DO RESOURCE QUERIES # #################################### + def _iterable_class(self, queryset, chunked_fetch=False): + """ Django 11 dummy support. """ + return iter(queryset.iterator()) + def iterator(self): """ An iterator over the results from applying this QuerySet to the