mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-04-04 17:24:30 +03:00
Do not re-run query for empty results with LimitOffsetPagination (#4388)
This commit is contained in:
parent
1312acaf8b
commit
ebf43346a1
|
@ -312,6 +312,9 @@ class LimitOffsetPagination(BasePagination):
|
|||
self.request = request
|
||||
if self.count > self.limit and self.template is not None:
|
||||
self.display_page_controls = True
|
||||
|
||||
if self.count == 0 or self.offset > self.count:
|
||||
return []
|
||||
return list(queryset[self.offset:self.offset + self.limit])
|
||||
|
||||
def get_paginated_response(self, data):
|
||||
|
|
Loading…
Reference in New Issue
Block a user