summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2010-05-11Fixed #13513 -- Ensured that queries collecting deleted objects are issued on...Russell Keith-Magee
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2010-04-30Fixed #12851 -- Another attempt at fixing select_related() with inherited mod...Russell Keith-Magee
2010-04-30Fixed #13449 -- Corrected typo in comment. Thanks stephaner.Russell Keith-Magee
2010-04-30Fixed #12851 -- Corrected the loading of values when select_related() is used...Russell Keith-Magee
2010-04-29Fixed #13441 -- Enforced a maximum identifier length of 63 for PostgreSQL. Th...Russell Keith-Magee
2010-04-28Fixed a bug preventing cursor variables from being passed as bind parameters ...Ian Kelly
2010-04-28Fixed #12977 -- Ensure that indexes don't exceed character limits on MySQL. T...Russell Keith-Magee
2010-04-28Fixed #13432 -- Corrected the logic for router use on OneToOne fields; also a...Russell Keith-Magee
2010-04-27Fixed #12749 -- Corrected a problem with validation of inline primary keys. T...Russell Keith-Magee
2010-04-27Refs #13427 -- Removed translation from verbose_name and verbose_name_plural ...Russell Keith-Magee
2010-04-27Fixed #13407 -- Corrected verbose names for autogenerated m2m models, and cle...Russell Keith-Magee
2010-04-23Fixed #11764 -- Added a missing set of parentheses in a call calculating the ...Russell Keith-Magee
2010-04-21Fixed #13396 -- Modified the SQLite introspection code to avoid a problem wit...Russell Keith-Magee
2010-04-21Fixed #13328 -- Ensured that querysets on models with callable defaults can b...Russell Keith-Magee
2010-04-20Fixed #13366 -- Corrected the field __setstate__ method to avoid a race condi...Russell Keith-Magee
2010-04-16Fixed #13358 -- Ensured that db_manager() can be used to override database ro...Russell Keith-Magee
2010-04-15Fixed #13348: Restored ability to load models from apps in eggs. Thanks Ramir...Karen Tracey
2010-04-15Fixed #13349 -- Ensure that raw queries evaluate the entire query if the back...Russell Keith-Magee
2010-04-15Fixed #13328 -- Added a __getstate__/__setstate__ pair to fields so that call...Russell Keith-Magee
2010-04-14Fixed #13335: Adjusted the r12950 fix to properly handle import errors result...Karen Tracey
2010-04-13Fixed #13227 -- Ensure that the query cache is flushed when a QuerySet is dee...Russell Keith-Magee
2010-04-12Fixed #11696: Changed app loading code so that it does not swallow import err...Karen Tracey
2010-04-09Fixed #13309 -- Ensure that delete() deletes everything it should delete(). T...Russell Keith-Magee
2010-04-09Fixed #13293 -- Corrected a problem with the MySQL handling of boolean return...Russell Keith-Magee
2010-04-04Fixed #12328 -- Corrected the handling of subqueries with ordering and slicin...Russell Keith-Magee
2010-04-03Fixed #12247 -- Corrected the way update queries are processed when the updat...Russell Keith-Magee
2010-04-02Fixed #11956 -- Modified the handling of m2m relationships between subclasses...Russell Keith-Magee
2010-04-02Fixed #12429 -- Modified RawQuery to provide some facilities required by Orac...Russell Keith-Magee
2010-04-01Fixed #12429 -- Ensure that raw queries call resolve_columns if the backend d...Russell Keith-Magee
2010-04-01Fixed #7190 -- Corrected a problem with Boolean value handling on the MySQL b...Russell Keith-Magee
2010-03-31Fixed #11916 -- Corrected handling of aggregation when there is a subquery pr...Russell Keith-Magee
2010-03-31Fixed #13250 -- Corrected a problem with the use of routing rules on the crea...Russell Keith-Magee
2010-03-30Fixed #13087 -- Modified m2m signals to provide greater flexibility over exac...Russell Keith-Magee
2010-03-27Fixed #12769, #12924 -- Corrected the pickling of curried and lazy objects, w...Russell Keith-Magee
2010-03-27Fixed #13227 -- Modified ForeignKeys to fully honor the db_prep/prep separati...Russell Keith-Magee
2010-03-25Fixed #12766 -- Only set the psycopg1 client encoding when the connection is ...Russell Keith-Magee
2010-03-25Fixed #12759 -- Fixed the iterator method on psycopg1 cursors, which was prev...Russell Keith-Magee
2010-03-23Fixed #12612 -- Corrected handling of parameter formatting in SQLite backend ...Russell Keith-Magee
2010-03-21Fixed #12822: Don't copy the _aggregate_select_cache when cloning a query set,Karen Tracey
2010-03-20Fixed #12239, again: Refined the original fix to avoid the test errors introd...Karen Tracey
2010-03-20Fixed #12239: Fixed results of gte and lt queries when comparing floats to in...Karen Tracey
2010-03-20Fixed #12851 -- Corrected the interaction of defer() with select_related(). T...Russell Keith-Magee
2010-03-20Fixed #12937 -- Corrected the operation of select_related() when following an...Russell Keith-Magee
2010-03-20Fixed #12850 -- Ensured that constraint names are quoted when they are remove...Russell Keith-Magee
2010-03-20Fixed #13156 -- Ensure that exists() queries are as fast as they can be. Than...Russell Keith-Magee
2010-03-16Fixed #12881: Corrected handling of inherited unique constraints. Thanks for ...Karen Tracey
2010-03-15Fixed #12953 -- Ensure that deletion cascades through generic relations. Also...Russell Keith-Magee
2010-03-12Fixed #11891 -- Ensured that attributes of get_absolute_url are preserved thr...Russell Keith-Magee
2010-03-12Fixed #11900 -- Corrected an edge case of transaction handling in the commit_...Russell Keith-Magee