mirror of
https://github.com/django/django.git
synced 2025-04-01 03:56:42 +00:00
Modified GeoManager.get_query_set
to reflect changes made for database routing in r12272.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12275 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f114fbecc2
commit
5ec44450df
@ -10,10 +10,7 @@ class GeoManager(Manager):
|
|||||||
use_for_related_fields = True
|
use_for_related_fields = True
|
||||||
|
|
||||||
def get_query_set(self):
|
def get_query_set(self):
|
||||||
qs = GeoQuerySet(self.model)
|
return GeoQuerySet(self.model, using=self._db)
|
||||||
if self._db is not None:
|
|
||||||
qs = qs.using(self._db)
|
|
||||||
return qs
|
|
||||||
|
|
||||||
def area(self, *args, **kwargs):
|
def area(self, *args, **kwargs):
|
||||||
return self.get_query_set().area(*args, **kwargs)
|
return self.get_query_set().area(*args, **kwargs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user