diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 3097500be4f..8d6b6678286 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -716,9 +716,7 @@ class SQLCompiler: ) for_update_part = None # Is a LIMIT/OFFSET clause needed? - with_limit_offset = with_limits and ( - self.query.high_mark is not None or self.query.low_mark - ) + with_limit_offset = with_limits and self.query.is_sliced combinator = self.query.combinator features = self.connection.features if combinator: