mirror of
https://github.com/django/django.git
synced 2025-11-29 15:01:18 +00:00
Refs #29654 -- Replaced three dots with ellipsis character in output strings.
This commit is contained in:
parent
233c70f047
commit
50b8493581
23 changed files with 60 additions and 60 deletions
|
|
@ -614,7 +614,7 @@ class Query:
|
|||
# really make sense (or return consistent value sets). Not worth
|
||||
# the extra complexity when you can write a real query instead.
|
||||
if self._extra and rhs._extra:
|
||||
raise ValueError("When merging querysets using 'or', you cannot have extra(select=...) on both sides.")
|
||||
raise ValueError("When merging querysets using 'or', you cannot have extra(select=…) on both sides.")
|
||||
self.extra.update(rhs.extra)
|
||||
extra_select_mask = set()
|
||||
if self.extra_select_mask is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue