mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #9477 -- Removed and edited a bunch of references to "development
version". Some were replaced with versionadded or versionchanged directives. Other, more minor ones, were removed altogether. Based on a patch from James Bennett. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
06f89325e1
commit
644ad9073f
11 changed files with 30 additions and 61 deletions
|
@ -959,10 +959,10 @@ SQL equivalents::
|
|||
SELECT ... WHERE id IS NULL;
|
||||
|
||||
.. versionchanged:: 1.0
|
||||
The semantics of ``id__exact=None`` have
|
||||
changed in the development version. Previously, it was (intentionally)
|
||||
converted to ``WHERE id = NULL`` at the SQL level, which would never match
|
||||
anything. It has now been changed to behave the same as ``id__isnull=True``.
|
||||
The semantics of ``id__exact=None`` have changed in Django 1.0. Previously,
|
||||
it was (intentionally) converted to ``WHERE id = NULL`` at the SQL level,
|
||||
which would never match anything. It has now been changed to behave the
|
||||
same as ``id__isnull=True``.
|
||||
|
||||
.. admonition:: MySQL comparisons
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue