From c742afb3b2e1ff2cd3febbaefec17036b170ab89 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 11 Jul 2008 12:44:04 +0000 Subject: [PATCH] Removed a FIXME that isn't really a problem any longer. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7886 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/sql/query.py | 1 - 1 file changed, 1 deletion(-) 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))