- 06 Şub, 2015 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 22 Mar, 2014 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Rewrote the test for #9479 according to the original ticket.
-
- 21 Mar, 2014 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
- 03 Kas, 2013 1 kayıt (commit)
-
-
Jason Myers yazdı
Signed-off-by:
Jason Myers <jason@jasonamyers.com>
-
- 26 Eki, 2013 1 kayıt (commit)
-
-
Alex Gaynor yazdı
-
- 23 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 18 Eki, 2013 1 kayıt (commit)
-
-
Alasdair Nicol yazdı
-
- 08 Eyl, 2013 1 kayıt (commit)
-
-
Alex Gaynor yazdı
-
- 29 Tem, 2013 1 kayıt (commit)
-
-
Claude Paroz yazdı
Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
-
- 10 Haz, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
Fixed #20483.
-
- 11 Mar, 2013 1 kayıt (commit)
-
-
Aymeric Augustin yazdı
enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management.
-
- 27 Şub, 2013 1 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
There were a couple of errors in ._dirty flag handling: * It started as None, but was never reset to None. * The _dirty flag was sometimes used to indicate if the connection was inside transaction management, but this was not done consistently. This also meant the flag had three separate values. * The None value had a special meaning, causing for example inability to commit() on new connection unless enter/leave tx management was done. * The _dirty was tracking "connection in transaction" state, but only in managed transactions. * Some tests never reset the transaction state of the used connection. * And some additional less important changes. This commit has some potential for regressions, but as the above list shows, the current situation isn't perfect either.
-
- 26 Şub, 2013 1 kayıt (commit)
-
-
Florian Apolloner yazdı
-
- 10 Şub, 2013 1 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
When a query had a complex where condition (a condition targeting more than the base table) a subquery was used for deletion. However, the query had default ordering from the model's meta and Oracle doesn't work with ordered subqueries. The regression was caused by fast-path deletion code introduced in 1cd6e04c for fixing #18676. Thanks to Dylan Klomparens for the report.
-
- 27 Kas, 2012 1 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
-
- 25 Eki, 2012 2 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
-
Anssi Kääriäinen yazdı
There was a bug introduced in #18676 which caused fast-path deletes implemented as "DELETE WHERE pk IN <subquery>" to fail if the SELECT clause contained additional stuff (for example extra() and annotate()). Thanks to Trac alias pressureman for spotting this regression.
-
- 28 Eyl, 2012 1 kayıt (commit)
-
-
Anssi Kääriäinen yazdı
Objects can be fast-path deleted if there are no signals, and there are no further cascades. If fast-path is taken, the objects do not need to be loaded into memory before deletion. Thanks to Jeremy Dunck, Simon Charette and Alex Gaynor for reviewing the patch.
-
- 17 Mar, 2012 1 kayıt (commit)
-
-
Carl Meyer yazdı
Fixed #17918 - Handle proxy models correctly when sorting deletions for databases without deferred constraints. Thanks Nate Bragg for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17756 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 16 Mar, 2012 1 kayıt (commit)
-
-
Carl Meyer yazdı
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17755 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 12 Mar, 2012 1 kayıt (commit)
-
-
Adrian Holovaty yazdı
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17686 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 05 Mar, 2012 1 kayıt (commit)
-
-
Carl Meyer yazdı
Fixed #16128 - Correctly cascade-delete proxy models as if they were the concrete model class. Thanks xkennyx for the report, and Aymeric Augustin, Claude Paroz, Adam Nelson, jaap3, and Anssi Kääriäinen for work on the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17664 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 13 Eki, 2011 1 kayıt (commit)
-
-
Alex Gaynor yazdı
Convert much of the regression tests to use absolute imports. There's still work to be done though. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16976 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 13 Tem, 2011 1 kayıt (commit)
-
-
Jannis Leidel yazdı
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 10 Haz, 2011 1 kayıt (commit)
-
-
Luke Plant yazdı
Thanks to intelliyole and melinath for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16354 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 30 May, 2011 1 kayıt (commit)
-
-
Luke Plant yazdı
Many thanks to aaron.l.madison for the detailed report and to emulbreh for the fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16295 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 03 Mar, 2011 1 kayıt (commit)
-
-
Russell Keith-Magee yazdı
assert_ -> assertTrue assertEquals -> assertEqual failUnless -> assertTrue For full details, see http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations git-svn-id: http://code.djangoproject.com/svn/django/trunk@15728 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 12 Şub, 2011 1 kayıt (commit)
-
-
Russell Keith-Magee yazdı
Fixed #9964 -- Ensure that all database operations make transactions dirty, not just write operations. Many thanks to Shai Berger for his work and persistence on this issue. This is BACKWARDS INCOMPATIBLE for anyone relying on the current behavior that allows manually managed read-only transactions to be left dangling without a manual commit or rollback. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15493 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 25 Ock, 2011 1 kayıt (commit)
-
-
Carl Meyer yazdı
Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no-longer-needed model formsets workaround for lack of such support from r10756. Thanks Russell and Alex for review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15303 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 19 Ock, 2011 1 kayıt (commit)
-
-
Carl Meyer yazdı
Fixed #14896 -- Ensured that _meta.get_all_related_objects(include_hidden=True) also works correctly with model inheritance. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15248 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 11 Eki, 2010 1 kayıt (commit)
-
-
Russell Keith-Magee yazdı
Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch, and to Luke, Karen, Justin, Alex, Łukasz Rekucki, and Chuck Harmston for their help testing and reviewing the final patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14139 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 09 Nis, 2010 1 kayıt (commit)
-
-
Russell Keith-Magee yazdı
Fixed #13309 -- Ensure that delete() deletes everything it should delete(). Thanks to craig.kimerer@gmail.com for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12941 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-
- 15 Mar, 2010 1 kayıt (commit)
-
-
Russell Keith-Magee yazdı
Fixed #12953 -- Ensure that deletion cascades through generic relations. Also cleans up the special-casing of generic relations in the deleted object discovery process. Thanks to carljm for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12790 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-