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
This commit is contained in:
parent
2b193f6100
commit
c742afb3b2
|
@ -283,7 +283,6 @@ class Query(object):
|
||||||
if ordering:
|
if ordering:
|
||||||
result.append('ORDER BY %s' % ', '.join(ordering))
|
result.append('ORDER BY %s' % ', '.join(ordering))
|
||||||
|
|
||||||
# FIXME: Pull this out to make life easier for Oracle et al.
|
|
||||||
if with_limits:
|
if with_limits:
|
||||||
if self.high_mark is not None:
|
if self.high_mark is not None:
|
||||||
result.append('LIMIT %d' % (self.high_mark - self.low_mark))
|
result.append('LIMIT %d' % (self.high_mark - self.low_mark))
|
||||||
|
|
Loading…
Reference in New Issue