summaryrefslogtreecommitdiff
path: root/tests/lookup
Commit message (Expand)AuthorAgeFilesLines
* Refs #30841 -- Made isnull lookup raise ValueError for non-boolean values.Mariusz Felisiak2021-01-141-11/+2
* Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani2020-11-062-169/+97
* Refs #27149 -- Fixed sql.Query identity.Simon Charette2020-10-281-1/+25
* Fixed #31918 -- Allowed QuerySet.in_bulk() to fetch on a single distinct field.Kaustubh2020-08-261-0/+18
* Fixed #31667 -- Made __in lookup ignore None values.Adam Johnson2020-06-111-2/+28
* Removed unused __str__() methods in tests models.Mariusz Felisiak2020-04-301-6/+0
* Fixed #31500 -- Fixed detecting of unique fields in QuerySet.in_bulk() when u...Hannes Ljungberg2020-04-232-1/+45
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-043-6/+3
* Fixed #30841 -- Deprecated using non-boolean values for isnull lookup.André Ericson2019-10-212-1/+35
* Fixed #30771 -- Fixed exact lookup against queries with selected columns.James Timmins2019-09-201-0/+13
* Fixed #29545 -- Fixed using filter lookups againts nested subquery expressions.Simon Charette2019-08-171-0/+14
* Refs #25367 -- Added test for Exists() lookup rhs.Simon Charette2019-08-121-0/+10
* Refs #29396, #30494 -- Reduced code duplication in year lookups.Simon Charette2019-05-211-6/+6
* Used QuerySet.bulk_create() in lookup.tests.JangHyukJin2019-04-011-27/+34
* Removed uneeded generator expressions and list comprehensions.Sergey Fedoseev2019-02-091-1/+1
* Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette2018-11-271-23/+24
* Fixed #29804 -- Added 'did you mean' suggestions for unsupported lookup error.Abhinav Patil2018-10-011-1/+16
* Fixed #29503 -- Made __in lookup keep order of values in query.Nick Pope2018-06-201-0/+4
* Fixed #25718 -- Made a JSONField lookup value of None match keys that have a ...Dmitry Dygalo2018-04-042-1/+18
* Refs #29155 -- Fixed LookupTests.test_pattern_lookups_with_substr() crash on ...Mariusz Felisiak2018-03-151-2/+2
* Fixed #29155 -- Fixed crash when database functions are used with pattern loo...Mariusz Felisiak2018-03-142-0/+18
* Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation wa...Raymond Hettinger2018-02-051-2/+2
* Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak2017-12-281-2/+2
* Fixed #28497 -- Restored the ability to use sliced QuerySets with __exact.Tim Graham2017-10-161-0/+22
* Corrected YearComparisonLookup.get_bound() signature.Srinivas Reddy Thatiparthy2017-09-041-0/+17
* Fixed #27985 -- Fixed query for __exact=value when get_prep_value() converts ...Sergey Fedoseev2017-07-312-1/+12
* Fixed #28453 -- Made __exact=None lookup use transforms.Sergey Fedoseev2017-07-312-0/+18
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-4/+13
* Fixed #27970 -- Allowed QuerySet.in_bulk() to fetch on fields besides primary...Tom Carrick2017-07-212-10/+62
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-2/+2
* Fixed #21160 -- Fixed QuerySet.in_bulk() crash on SQLite when requesting more...Mariusz Felisiak2017-03-271-0/+11
* Fixed spelling of "nonexistent".Tim Graham2017-02-031-1/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-5/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-183-6/+0
* Refs #26285 -- Removed MySQL __search lookup per deprecation timeline.Tim Graham2017-01-172-43/+2
* Fixed #27498 -- Fixed filtering on annotated DecimalField on SQLite.Peter Inglesby2016-12-242-0/+48
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-10/+7
* Fixed #27268 -- Restored an invalid related field lookup error message in Qu...Mariusz Felisiak2016-09-271-0/+3
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-1/+1
* Fixed #27203 -- Replaced assertQuerysetEqual(..., lambda o: o) with assertSeq...Mads Jensen2016-09-131-42/+25
* Fixed #26285 -- Deprecated the MySQL-specific __search lookup.Marc Tamlyn2016-03-022-1/+6
* Fixed #25811 -- Added a helpful error when making _in queries across differen...Edwar Baron2016-02-261-0/+8
* Fixed #26176 -- Fixed E123 flake8 warnings.26176Tim Graham2016-02-051-215/+222
* Refs #26022 -- Used context manager version of assertRaises in tests.Hasan2016-01-291-6/+8
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-2/+4
* Fixed #8065 -- Made id_list an optional argument for QuerySet.in_bulk().Bryan Marty2015-12-261-1/+12
* Fixed #25609 -- Fixed regression in related field nested lookup error.Ian Foote2015-10-271-0/+6
* Fixed #25550 -- Deprecated direct assignment to the reverse side of a related...Tim Graham2015-10-271-4/+4
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-2/+10