summaryrefslogtreecommitdiff
path: root/tests/expressions
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed #31755 -- Made temporal subtraction resolve output field.Sergey Fedoseev2020-07-011-34/+16
* Refs #28621 -- Fixed crash of annotations with nested OuterRef.Sergey Fedoseev2020-07-011-0/+16
* Fixed #28925 -- Fixed durations-only expressions crash on SQLite and MySQL.Sergey Fedoseev2020-06-301-0/+6
* Fixed #31659 -- Made ExpressionWrapper preserve output_field for combined exp...Mariusz Felisiak2020-06-121-1/+3
* Fixed #31651 -- Made ExpressionWrapper use grouping columns from wrapped expr...Thodoris Sotiropoulos2020-06-031-0/+10
* Fixed #31607 -- Fixed evaluated Subquery equality.Mariusz Felisiak2020-05-191-0/+19
* Changed `'%s' % value` pattern to `str(value)`.Nick Pope2020-05-041-1/+1
* Removed unused __str__() methods in tests models.Mariusz Felisiak2020-04-301-3/+0
* Fixed #31420 -- Fixed crash when filtering subquery annotation against a Simp...Hasan Ramezani2020-04-062-2/+23
* Fixed #31415 -- Fixed crash when nested OuterRef is used with operators or in...Hasan Ramezani2020-04-041-1/+17
* Removed unnecessary assertions in ExpressionOperatorTests.Mariusz Felisiak2020-03-251-5/+0
* Fixed #31396 -- Added binary XOR operator to F expressions.Hannes Ljungberg2020-03-251-1/+20
* Fixed #31251 -- Disabled grouping by OuterRef() annotation.Rohit2020-02-271-0/+8
* Fixed #31312 -- Properly ordered temporal subtraction params on MySQL.Simon Charette2020-02-271-3/+20
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-042-65/+62
* Fixed #31133 -- Fixed crash when subtracting against a subquery annotation.Simon Charette2020-01-031-0/+31
* Refs #31115 -- Added test for nested subquery that references related fields.Mariusz Felisiak2019-12-231-0/+15
* Fixed #30986 -- Fixed queryset crash when filtering against boolean RawSQL ex...Mariusz Felisiak2019-11-181-0/+8
* Fixed some typos in comments and docs.Min ho Kim2019-10-021-2/+2
* Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU2019-10-011-0/+2
* Fixed #25367 -- Allowed boolean expressions in QuerySet.filter() and exclude().Matthew Schinckel2019-08-292-1/+60
* Used skipUnlessDBFeature instead of checking vendor in test_filtering_on_anno...Mariusz Felisiak2019-08-291-1/+1
* Fixed #30628 -- Adjusted expression identity to differentiate bound fields.Simon Charette2019-07-101-1/+20
* Fixed typo in BasicExpressionsTests.test_object_update_fk() test.Mariusz Felisiak2019-06-211-1/+1
* Fixed #29692 -- Fixed removing ordering parts for multiline RawSQL expressions.can2019-05-031-0/+23
* Refs #25507 -- Added tests for using QuerySet.count() with a RawSQL annotation.Mariusz Felisiak2019-04-191-0/+4
* Fixed #28621 -- Fixed crash of annotations with OuterRef.Mariusz Felisiak2019-03-271-0/+11
* Refs #30188 -- Avoided GROUP BY when aggregating over non-aggregates.Simon Charette2019-03-231-2/+5
* Refs #30188 -- Prevented double annotation of subquery when aggregated over.Simon Charette2019-03-231-9/+13
* Fixed #30188 -- Fixed a crash when aggregating over a subquery annotation.Simon Charette2019-03-231-0/+13
* Refs #30158 -- Added alias argument to Expression.get_group_by_cols().Simon Charette2019-03-211-0/+24
* Fixed #29619 -- Added field names to some FieldErrors.Hasan Ramezani2019-02-141-1/+2
* Fixed #30044 -- Raised a FieldError on inherited field update attempts.Simon Charette2019-01-162-2/+11
* Removed unnecessary transaction wrapping in expressions test.Simon Charette2019-01-161-7/+6
* Fixed #30099 -- Fixed invalid SQL when filtering a Subquery by an aggregate.Nasir Hussain2019-01-151-0/+12
* Fixed #28658 -- Added DISTINCT handling to the Aggregate class.Simon Charette2019-01-091-3/+10
* Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette2018-11-271-2/+3
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-1/+1
* Fixed #29745 -- Based Expression equality on detailed initialization signature.Simon Charette2018-10-021-2/+28
* Fixed expressions tests when run in reverse.Mariusz Felisiak2018-09-181-7/+6
* Simplified expressions.tests.Mariusz Felisiak2018-09-131-104/+41
* Fixed #29500 -- Fixed SQLite function crashes on null values.Srinivas Reddy Thatiparthy2018-09-101-0/+42
* Fixed #29727 -- Made nonexistent joins in F() raise FieldError.Alexander Holmbäck2018-09-081-0/+4
* Moved test for nonexistent field in F() to BasicExpressionsTest.Alexander Holmbäck2018-09-081-4/+4
* Fixed #29330 -- Fixed crash when pickling BaseExpression.Daniel Miller2018-04-161-0/+6
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-162-9/+18
* Fixed #29195 -- Fixed Exists.output_field resolution on single-valued queries.Simon Charette2018-03-081-0/+4
* Fixed #29142 -- Fixed crash when OuterRef is used with an operator.Matthew Schinckel2018-02-231-0/+5
* Fixed #28442 -- Fixed crash with nested OuterRefs that reference AutoField.Oliver Sauder2018-02-201-0/+10
* Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields).Matthew Wilkes2018-02-101-0/+34