diff options
| author | Tim Graham <timograham@gmail.com> | 2015-08-20 12:46:14 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-08-27 10:04:23 -0400 |
| commit | afee534e7ab3ea66be695678556179a7b747b101 (patch) | |
| tree | 140b6b446aeacc9255dd3ccbdfefc9982ef7ed72 /django/db/models/sql | |
| parent | 956df84a613d4b9a92c979e46557243d288282c8 (diff) | |
| download | django-24525.tar.gz | |
Fixed #24525 -- Fixed AssertionError in some complex queries.24525
Diffstat (limited to 'django/db/models/sql')
| -rw-r--r-- | django/db/models/sql/query.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index f0845cd73a..17dc5e9920 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -789,7 +789,6 @@ class Query(object): relabelling any references to them in select columns and the where clause. """ - assert set(change_map.keys()).intersection(set(change_map.values())) == set() def relabel_column(col): if isinstance(col, (list, tuple)): |
