diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-11 12:44:04 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-11 12:44:04 +0000 |
| commit | c742afb3b2e1ff2cd3febbaefec17036b170ab89 (patch) | |
| tree | e318a63f078d2ace10437111342e20d061b2a49b | |
| parent | 2b193f6100c571d4b5bc87815c7569179db27030 (diff) | |
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
| -rw-r--r-- | django/db/models/sql/query.py | 1 |
1 files changed, 0 insertions, 1 deletions
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)) |
