diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 0cacb7f3ed..cf7c27d9a4 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -283,7 +283,6 @@ class Query(object): if ordering: result.append('ORDER BY %s' % ', '.join(ordering)) - # FIXME: Pull this out to make life easier for Oracle et al. if with_limits: if self.high_mark is not None: result.append('LIMIT %d' % (self.high_mark - self.low_mark))