summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2014-08-30[1.6.x] Fixed #23370 -- defer() + select_related() crashed with inherited mod...Akis Kesoglou
2014-07-29[1.6.x] Fixed #20292: Pass datetime objects (not formatted dates) as params t...Shai Berger
2014-07-24[1.6.x] Fixed #23089 -- Fixed transaction handling in two management commands.Aymeric Augustin
2014-07-16[1.6.x] Fixed #22998 -- Updated the fast_delete logic for GFKsGavin Wahl
2014-07-05[1.6.x] Fixed various minor doc typos / references.Daniel Hahler
2014-06-20[1.6.x] Fixed #22514 -- Prevented indexes on virtual fields [postgres].Vlastimil Zíma
2014-05-10[1.6.x] Fixed #22508 -- Avoided overwriting select_related.Aymeric Augustin
2014-05-05[1.6.x] Fixed #22429 -- Incorrect SQL when using ~Q and FAnssi Kääriäinen
2014-05-01[1.6.x] Fixed #22551 -- Made oracle backend method Python 3 compatibleClaude Paroz
2014-04-21[1.6.x] Fixed queries that may return unexpected results on MySQL due to type...Erik Romijn
2014-04-13[1.6.x] Fixed #21760 -- prefetch_related used an inefficient query for revers...valtron
2014-04-11Improved a comment. Thanks intgr for the report.Aymeric Augustin
2014-04-10[1.6.x] Increased robustness of 58161e4e. Refs #22291.Aymeric Augustin
2014-04-10[1.6.x] Fixed #21202 -- Maintained atomicity when the server disconnects.Aymeric Augustin
2014-04-10[1.6.x] Fixed #21239 -- Maintained atomicity when closing the connection.Aymeric Augustin
2014-04-10[1.6.x] Fixed #22321 -- Wrapped exceptions in _set_autocommit.Aymeric Augustin
2014-04-10[1.6.x] Fixed #22291 -- Avoided shadowing deadlock exceptions on MySQL.Aymeric Augustin
2014-04-10[1.6.x] Fixed #22343 -- Disallowed select_for_update in autocommit modeShai Berger
2014-04-09[1.6.x] Fixed #21553 -- Ensured unusable database connections get closed.Aymeric Augustin
2014-02-28[1.6.x] Fixed #21643 -- repeated execution of qs with F() + timedeltaAlexey Voronov
2014-02-14[1.6.x] Fixed #21566 -- Fixed AttributeError when using bulk_create with Fore...Roger Hu
2014-02-04[1.6.x] Fixed #21748 -- join promotion for negated AND conditionsAnssi Kääriäinen
2014-02-04[1.6.x] Fixed #21413 -- resolve_columns fields misalignmentAnssi Kääriäinen
2014-01-30[1.6.x] Made Oracle introspect FloatFields correctlyShai Berger
2014-01-30[1.6.x] Made Oracle introspect boolean fieldsShai Berger
2014-01-24[1.6.x] Fixed #21787 -- regression in MTI .exclude() queriesAnssi Kääriäinen
2014-01-12[1.6.x] Fixed #21452 -- Non-autocommit connections to PostgreSQL.Aymeric Augustin
2013-12-26[1.6.x] Fixed typo and slightly improved error message when db is missing tim...Loic Bistuer
2013-11-14[1.6.x] Fixed #21432 -- DateTimeQuery now copies tzinfo when cloning.Loic Bistuer
2013-11-13[1.6.x] Fixed #21410 -- prefetch_related() for ForeignKeys with related_name='+'Loic Bistuer
2013-10-26[1.6.x] Removed relative usage of import_moduleClaude Paroz
2013-10-21[1.6.x] Fixed #21249 -- variable name typo in compiler.get_grouping()Anssi Kääriäinen
2013-10-13Fixed #21198 -- Prevented invalid use of @python_2_unicode_compatible.Aymeric Augustin
2013-10-13[1.6.x] Fixed #19560 -- Identified field in warning for naive datetime.Aymeric Augustin
2013-10-07[1.6.x] Fixed #21235 -- Disabled savepoints for old versions of SQLite.Aymeric Augustin
2013-10-01[1.6.x] Fixed #21203 -- resolve_columns fields misalignmentAnssi Kääriäinen
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-09-25[1.6.x] Fixed #21126 -- QuerySet value conversion failureAnssi Kääriäinen
2013-09-24[1.6.x] Fixed #21150 -- Improved Query.add_fields() join promotion logicAnssi Kääriäinen
2013-09-17[1.6.x] Fixed #21109 -- made db cursor error wrapping fasterAnssi Kääriäinen
2013-09-09[1.6.x] Fixed #20707 -- Added explicit quota assignment to Oracle test userСадовский Николай
2013-09-06[1.6.x] Fixed #11811 -- Data-loss bug in queryset.update.Aymeric Augustin
2013-09-05[1.6.x] Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.Eric Boersma
2013-09-04[1.6.x] Tested exc_type instead of exc_value in __exit__.Aymeric Augustin
2013-09-03Used six.moves.zip_longest, new in six 1.4.0.Aymeric Augustin
2013-09-03[1.6.x] Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-08-30[1.6.x] Fixed #20999 - Allow overriding formfield class with choices, without...Carl Meyer
2013-08-30[1.6.x] Fixed #20988 -- Added model meta option select_on_saveAnssi Kääriäinen
2013-08-30[1.6.x] Removed stale add_q() commentAnssi Kääriäinen
2013-08-29[1.6.x] Fixed #14786 -- Fixed get_db_prep_lookup calling get_prep_value twice...Tim Graham