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:
Malcolm Tredinnick 2008-07-11 12:44:04 +00:00
parent 2b193f6100
commit c742afb3b2
1 changed files with 0 additions and 1 deletions

View File

@ -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))