Author: mtredinnick
Date: 2008-07-11 07:44:04 -0500 (Fri, 11 Jul 2008)
New Revision: 7886
Modified:
django/trunk/django/db/models/sql/query.py
Log:
Removed a FIXME that isn't really a problem any longer.
Modified: django/trunk/django/db/models/sql/query.py
===================================================================
--- django/trunk/django/db/models/sql/query.py 2008-07-11 12:43:27 UTC (rev
7885)
+++ django/trunk/django/db/models/sql/query.py 2008-07-11 12:44:04 UTC (rev
7886)
@@ -283,7 +283,6 @@
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))
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---