summaryrefslogtreecommitdiff
path: root/tests/queries
AgeCommit message (Expand)Author
2019-01-14Fixed #30093 -- Fixed ordering of combined queryset ordered by F expressions.Sergey Fedoseev
2018-12-06Fixed #29932 -- Fixed combining compound queries with sub-compound queries on...Mariusz Felisiak
2018-11-27Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham
2018-11-21Fixed #29974 -- Fixed non-truthy primary key values for QuerySet.bulk_update().Tom Forbes
2018-11-15Fixed #17930 -- Allowed ORing (|) with sliced QuerySets.Ian Foote
2018-09-26Fixed #29630 -- Fixed crash of sliced queries with multiple columns with the ...Mariusz Felisiak
2018-09-18Fixed #23646 -- Added QuerySet.bulk_update() to efficiently update many models.Tom Forbes
2018-09-13Refs #14357 -- Deprecated Meta.ordering affecting GROUP BY queries.Ramiro Morales
2018-08-29Fixed #29694 -- Fixed column mismatch crash with QuerySet.values() or values_...Mariusz Felisiak
2018-08-21Fixed #29658 -- Registered model lookups in tests with a context manager.Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)
2018-07-25Refs #29563 -- Fixed SQLCompiler.execute_sql() to respect DatabaseFeatures.ca...Andrew Brown
2018-07-16Fixed #28917 -- Prevented Paginator's unordered warning on EmptyQuerySet.Josh Schneier
2018-07-10Fixed #11964 -- Added support for database check constraints.Ian Foote
2018-07-09Fixed some assertTrue() that were intended to be assertEqual().Sergey Fedoseev
2018-06-06Fixed MySQL QuerySet.explain() test when running tests in reverse.Tim Graham
2018-06-06Refs #29451 -- Used quote_name for column names in tests.Carlton Gibson
2018-06-05Refs #29451 -- Quoted MySQL column names in tests.Tom Forbes
2018-04-19Fixed #28574 -- Added QuerySet.explain().Tom
2018-04-13Fixed #29286 -- Fixed column mismatch crash with QuerySet.values() or values_...Mariusz Felisiak
2018-03-29Added test for combining Q objects with non-Q objects.Mads Jensen
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
2018-03-19Fixed #29229 -- Fixed column mismatch crash when combining two annotated valu...Astral
2018-03-16Fixed hanging indentation in various code.Mariusz Felisiak
2018-02-12Refs #29125 -- Made Q.deconstruct() omit 'query_utils' in the path and _conne...Tim Graham
2018-02-12Fixed #29125 -- Made Q.deconstruct() deterministic with multiple keyword argu...Tim Graham
2018-02-08Fixed #29108 -- Fixed crash in aggregation of distinct+ordered+sliced querysets.Simon Charette
2018-02-07Renamed the allow_sliced_subqueries database feature to allow_sliced_subqueri...Mariusz Felisiak
2018-01-20Refs #20487 -- Added test for querying mixed case fields with common related ...Mariusz Felisiak
2017-12-28Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak
2017-11-12Fixed #28781 -- Added QuerySet.values()/values_list() support for union(), di...Mariusz Felisiak
2017-09-06Fixed #15648 -- Allowed QuerySet.values_list() to return a namedtuple.Sergey Fedoseev
2017-09-05Fixed #11557 -- Added support for a list of fields in Meta.get_latest_by and ...François Freitag
2017-07-29Used assertRaisesMessage() to test Django's error messages.Mads Jensen
2017-07-15Fixed #28399 -- Fixed QuerySet.count() for union(), difference(), and interse...Florian Apolloner
2017-07-10Fixed #28378 -- Fixed union() and difference() when combining with a queryset...Mariusz Felisiak
2017-07-10Added test for intersection() when combining with a queryset raising EmptyRes...Mariusz Felisiak
2017-06-29Removed obsolete Query.tables attribute.Anssi Kääriäinen
2017-06-13Fixed #28293 -- Fixed union(), intersection(), and difference() when combinin...Mariusz Felisiak
2017-06-01Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().François Freitag
2017-05-31Fixed #22550 -- Prohibited QuerySet.last()/reverse() after slicing.Matthias Erll
2017-05-27Fixed a test's dict_keys/list comparison that always evaluated as False.Jon Dufresne
2017-05-25Fixed #28211 -- Prevented ORing an empty Q() from reducing query join efficie...Tom
2017-05-25Refs #28211 -- Added a test for ANDing empty Q()'s.Tim Graham
2017-05-11Fixed #24254 -- Fixed queries using the __in lookup with querysets using dist...Simon Charette
2017-04-23Fixed #28101 -- Fixed a regression with nested __in subquery lookups and to_f...Simon Charette
2017-04-10Used NotSupportedError instead of DatabaseError in SQLCompiler.as_sql().Mariusz Felisiak
2017-03-24Refs #21160 -- Replaced DatabaseFeatures.supports_1000_query_parameters by a ...Mariusz Felisiak
2017-03-06Fixed #26522 -- Fixed a nondeterministic AssertionError in QuerySet combining.Bo Marchman
2017-02-23Refs #11964 -- Made Q objects deconstructible.Ian Foote
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis