summaryrefslogtreecommitdiff
path: root/tests/queries
Commit message (Expand)AuthorAgeFilesLines
* Fixed #28553 -- Fixed annotation mismatch with QuerySet.values()/values_list(...David Wobrock2023-03-241-1/+15
* Refs #31445 -- Added test for nesting QuerySet.union().Mariusz Felisiak2023-02-211-0/+9
* Fixed #34267 -- Fixed sliced QuerySet.union() crash.Francesco Panico2023-01-201-4/+12
* Refs #31486 -- Removed ability to pass unsaved model instances to related fil...Mariusz Felisiak2023-01-171-27/+9
* Removed unnecessary commas in tests.Mariusz Felisiak2022-12-211-3/+1
* Refs #33308 -- Avoided passing None to RawSQL's params.Florian Apolloner2022-12-021-4/+3
* Refs #33050 -- Added test for QuerySet.count() on combined queries with selec...Mariusz Felisiak2022-11-231-0/+6
* Fixed #34123 -- Fixed combinator order by alias when using select_related().Simon Charette2022-11-151-0/+28
* Refs #33374 -- Adjusted full match condition handling.Simon Charette2022-11-071-7/+13
* Fixed #16211 -- Added logical NOT support to F expressions.David Wobrock2022-10-311-2/+2
* Fixed #34125 -- Fixed sliced QuerySet.union() crash on a single non-empty que...Simon Charette2022-10-291-0/+26
* Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner2022-10-082-28/+28
* Replaced assertQuerysetEqual() to assertSequenceEqual()/assertCountEqual() wh...Mariusz Felisiak2022-10-071-23/+23
* Fixed #33768 -- Fixed ordering compound queries by nulls_first/nulls_last on ...Simon Charette2022-10-051-0/+18
* Fixed #34012 -- Made QuerySet.order_by() apply transforms on related fields f...David Sanders2022-10-041-0/+3
* Refs #34012 -- Added test for ordering by transform of related fields.Mariusz Felisiak2022-09-221-0/+14
* Fixed #34015 -- Allowed filtering by transforms on relation fields.Mariusz Felisiak2022-09-222-3/+33
* Fixed #21204 -- Tracked field deferrals by field instead of models.Simon Charette2022-08-301-6/+0
* Refs #32948, Refs #32946 -- Used Q.create() internally for dynamic Q() objects.Nick Pope2022-07-271-0/+9
* Used AND, OR, XOR constants instead of hard-coded values.Nick Pope2022-07-273-11/+11
* Fixed #33796 -- Fixed ordered combined queryset crash when used in subquery o...Mariusz Felisiak2022-06-271-0/+22
* Made QuerySet.bulk_update() raise an error when batch_size is zero.Ebram Shehata2022-06-131-0/+2
* Fixed #33717 -- Dropped support for PostgreSQL 11.Mariusz Felisiak2022-05-191-2/+1
* Refs #30581 -- Added Q.check() hook.Gagaro2022-05-041-1/+39
* Refs #30581 -- Added Q.flatten().Gagaro2022-05-031-1/+27
* Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...Mariusz Felisiak2022-04-191-2/+4
* Relaxed some query ordering assertions in various tests.Mariusz Felisiak2022-04-141-2/+2
* Made select_for_update() don't raise TransactionManagementError on databases ...Mariusz Felisiak2022-04-141-12/+4
* Expanded QuerySet.explain() error message if a backend supports no formats.Tim Graham2022-04-141-0/+2
* Improved ExplainTests.test_basic().Mariusz Felisiak2022-04-131-7/+14
* Fixed #24296 -- Made QuerySet.exists() clear selected columns for not sliced ...mgaligniana2022-04-121-0/+8
* Refs #18414 -- Added tests for selected columns of sliced distinct querysets.mgaligniana2022-04-121-0/+8
* Removed DatabaseFeatures.validates_explain_options.Mariusz Felisiak2022-04-111-1/+0
* Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against SQL inj...Mariusz Felisiak2022-04-111-2/+31
* Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(), and extra...Mariusz Felisiak2022-04-111-0/+9
* Refs #30581 -- Allowed sql.Query to be used without model.Gagaro2022-03-161-3/+62
* Fixed #29865 -- Added logical XOR support for Q() and querysets.Ryan Heard2022-03-043-0/+76
* Fixed #31486 -- Deprecated passing unsaved objects to related filters.Albert Defler2022-02-251-1/+29
* Removed redundant QuerySet.all() calls in docs and tests.Nick Pope2022-02-223-14/+14
* Fixed #33506 -- Made QuerySet.bulk_update() perform atomic writes against wri...Simon Charette2022-02-091-1/+27
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-4/+10
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-0711-1554/+2110
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-2/+1
* Fixed #33463 -- Fixed QuerySet.bulk_update() with F() expressions.Jörg Breitbart2022-01-271-0/+10
* Fixed #29338 -- Allowed using combined queryset in Subquery.Mariusz Felisiak2022-01-171-2/+35
* Fixed #33319 -- Fixed crash when combining with the | operator querysets with...Ömer Faruk Abacı2021-12-082-2/+23
* Fixed #33322 -- Fixed loss of assigned related object when saving relation wi...Hannes Ljungberg2021-11-291-1/+31
* Refs #24121 -- Added __repr__() to BaseDatabaseWrapper, JoinPromoter, and SQL...Jonny Park2021-11-192-1/+26
* Refs #25467 -- Added test for excluding one-to-one relation with unsaved obje...Jacob Walls2021-10-081-0/+8
* Fixed tests.queries.models.StaffUser.__str__().Jacob Walls2021-10-081-1/+1