Kaydet (Commit) 559aca7d authored tarafından Malcolm Tredinnick's avatar Malcolm Tredinnick

A queryset that has had ordering removed (order_by()) can have ordering added

again later (order_by('foo')). Or, at least, it can now. Thanks to Ilya
Novoselov for diagnosing the problem here.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@9206 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 44f228fd
......@@ -608,7 +608,7 @@ class Query(object):
if self.extra_order_by:
ordering = self.extra_order_by
elif not self.default_ordering:
ordering = []
ordering = self.order_by
else:
ordering = self.order_by or self.model._meta.ordering
qn = self.quote_name_unless_alias
......
......@@ -973,6 +973,12 @@ Make sure bump_prefix() (an internal Query method) doesn't (re-)break.
>>> query.bump_prefix()
>>> print query.as_sql()[0]
SELECT U0."id" FROM "queries_tag" U0
Calling order_by() with no parameters removes any existing ordering on the
model. But it should still be possible to add new ordering after that.
>>> qs = Author.objects.order_by().order_by('name')
>>> 'ORDER BY' in qs.query.as_sql()[0]
True
"""}
# In Python 2.3 and the Python 2.6 beta releases, exceptions raised in __len__
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment