Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/aggregation_regress/models.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-7/+7
| | | | on_delete for ForeignKey/OneToOneField
* Fixed #24748 -- Fixed incorrect GROUP BY on MySQL in ↵Anssi Kääriäinen2015-05-111-0/+5
| | | | | | | | | some queries When the query's model had a self-referential foreign key, the compiler.get_group_by() code incorrectly used the self-referential foreign key's column (for example parent_id) as GROUP BY clause when it should have used the model's primary key column (id).
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
|
* Harmonized some PEP 0263 coding preamblesClaude Paroz2014-05-151-1/+1
|
* Fixed #19774 -- Deprecated the contenttypes.generic module.Simon Charette2014-01-261-3/+5
| | | | | | | It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review.
* PEP8 cleanupJason Myers2013-11-031-1/+5
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Improved Query join promotion logicAnssi Kääriäinen2013-10-051-1/+1
| | | | | | | There were multiple cases where join promotion was a bit too aggressive. This resulted in using outer joins where not necessary. Refs #21150.
* Fixed #21150 -- select_related + annotate join promotion ↵Anssi Kääriäinen2013-10-051-0/+11
| | | | | | | failure Added tests for a .annotate().select_related() join promotion failure. This happened to work on master but was currently untested.
* Fixed #20895 -- Made check management command warn if a ↵Alasdair Nicol2013-08-161-1/+1
| | | | | | | BooleanField does not have a default value Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch.
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-261-0/+89