mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #12822: Don't copy the _aggregate_select_cache when cloning a query set,
as that can lead to incorrect SQL being generated for the query. Thanks to mat for the report and test, tobias for the fix, and Alex for review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12830 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -240,10 +240,12 @@ class Query(object): | ||||
|             obj.aggregate_select_mask = None | ||||
|         else: | ||||
|             obj.aggregate_select_mask = self.aggregate_select_mask.copy() | ||||
|         if self._aggregate_select_cache is None: | ||||
|             obj._aggregate_select_cache = None | ||||
|         else: | ||||
|             obj._aggregate_select_cache = self._aggregate_select_cache.copy() | ||||
|         # _aggregate_select_cache cannot be copied, as doing so breaks the | ||||
|         # (necessary) state in which both aggregates and | ||||
|         # _aggregate_select_cache point to the same underlying objects. | ||||
|         # It will get re-populated in the cloned queryset the next time it's | ||||
|         # used. | ||||
|         obj._aggregate_select_cache = None | ||||
|         obj.max_depth = self.max_depth | ||||
|         obj.extra = self.extra.copy() | ||||
|         if self.extra_select_mask is None: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user