summaryrefslogtreecommitdiff
path: root/tests/queries/test_qs_combinators.py
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 #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
* 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-081-5/+5
* Fixed #33768 -- Fixed ordering compound queries by nulls_first/nulls_last on ...Simon Charette2022-10-051-0/+18
* Fixed #33796 -- Fixed ordered combined queryset crash when used in subquery o...Mariusz Felisiak2022-06-271-0/+22
* Fixed #29865 -- Added logical XOR support for Q() and querysets.Ryan Heard2022-03-041-0/+1
* Removed redundant QuerySet.all() calls in docs and tests.Nick Pope2022-02-221-1/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-173/+213
* Fixed #29338 -- Allowed using combined queryset in Subquery.Mariusz Felisiak2022-01-171-2/+35
* Fixed #33127 -- Added error messages on | and & operators with combined query...Hasan Ramezani2021-09-241-0/+21
* Fixed #32627 -- Fixed QuerySet.values()/values_list() crash on combined query...Iuri de Silvio2021-04-121-1/+19
* Fixed #24141 -- Added QuerySet.contains().Johan Schiff2021-03-061-0/+6
* Fixed #31507 -- Added QuerySet.exists() optimizations to compound queries.David-Wobrock2020-11-161-1/+14
* Refs #27718 -- Doc'd and tested QuerySet.exists() for combined querysets.David-Wobrock2020-11-161-0/+23
* Fixed #31496 -- Fixed QuerySet.values()/values_list() crash on combined query...David-Wobrock2020-11-141-0/+22
* Fixed #32116 -- Fixed QuerySet.order_by() crash on EmptyQuerySet with union()...Hannes Ljungberg2020-10-191-0/+5
* Fixed #32068 -- Added error messages on get() with filters following union(),...Hasan Ramezani2020-10-051-0/+13
* Refs #32068 -- Added tests for get() following union(), intersection(), and d...Hasan Ramezani2020-10-051-0/+16
* Fixed #31916 -- Fixed combined queryset crash when combining with ordered com...Hasan Ramezani2020-09-171-0/+3
* Fixed #27719 -- Added QuerySet.alias() to allow creating reusable aliases.Alexandr Tatarinov2020-07-311-0/+1
* Fixed #31767 -- Fixed QuerySet.none() on combined queryset.Mariusz Felisiak2020-07-071-0/+7
* Refs #31614 -- Added test for ordering by OrderBy() of combined queryset with...Mariusz Felisiak2020-05-271-0/+2
* Fixed #31614 -- Fixed aliases ordering by OrderBy() expressions of combined q...Laurent Tramoy2020-05-261-0/+15
* Refs #31614 -- Added test for aliases ordering on combined querysets.Laurent Tramoy2020-05-261-0/+11
* Used operator.attrgetter() in test_qs_combinators.Laurent Tramoy2020-05-261-4/+3
* Fixed #31580 -- Added error messages on distinct() following union(), interse...Hasan Ramezani2020-05-131-0/+1
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-2/+1
* Fixed #31148 -- Added error messages on update()/delete() operations followin...Hasan Ramezani2020-01-091-0/+2
* Fixed #27995 -- Added error messages on unsupported operations following unio...Hasan Ramezani2019-07-251-0/+27
* Fixed #30628 -- Adjusted expression identity to differentiate bound fields.Simon Charette2019-07-101-1/+8
* Fixed #29834 -- Fixed column mismatch crash with QuerySet.values()/values_lis...can2019-06-191-0/+23
* Fixed #30572 -- Prevented values()/values_list() on combined queryset from mu...Mariusz Felisiak2019-06-191-0/+3
* Fixed #30093 -- Fixed ordering of combined queryset ordered by F expressions.Sergey Fedoseev2019-01-141-0/+5
* Fixed #29932 -- Fixed combining compound queries with sub-compound queries on...Mariusz Felisiak2018-12-061-0/+6
* Fixed #29694 -- Fixed column mismatch crash with QuerySet.values() or values_...Mariusz Felisiak2018-08-291-0/+7
* Fixed #29286 -- Fixed column mismatch crash with QuerySet.values() or values_...Mariusz Felisiak2018-04-131-1/+9
* Fixed #29229 -- Fixed column mismatch crash when combining two annotated valu...Astral2018-03-191-0/+11
* Fixed #28781 -- Added QuerySet.values()/values_list() support for union(), di...Mariusz Felisiak2017-11-121-0/+30
* Fixed #28399 -- Fixed QuerySet.count() for union(), difference(), and interse...Florian Apolloner2017-07-151-0/+21
* Fixed #28378 -- Fixed union() and difference() when combining with a queryset...Mariusz Felisiak2017-07-101-0/+8
* Added test for intersection() when combining with a queryset raising EmptyRes...Mariusz Felisiak2017-07-101-0/+4
* Fixed #28293 -- Fixed union(), intersection(), and difference() when combinin...Mariusz Felisiak2017-06-131-0/+25
* Used NotSupportedError instead of DatabaseError in SQLCompiler.as_sql().Mariusz Felisiak2017-04-101-3/+3
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-6/+0
* Refs #23919 -- Removed misc references to Python 2.Tim Graham2017-01-211-1/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0