summaryrefslogtreecommitdiff
path: root/packages/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2014-10-18 19:31:17 -0500
committerDan McGee <dan@archlinux.org>2014-10-18 19:31:17 -0500
commit32a0075b59f3f692d8084a041d4a10c6298cdc15 (patch)
treebc5f312dbfa5ccbb31addeeb2e10b819d87e31b9 /packages/models.py
parent21b8ff5cf2b60f862e3fc3cfb43d8d8af0d6189f (diff)
parent0e90423fc09f53317992bbb024e82ef65728aa11 (diff)
Merge branch 'jinja'
Diffstat (limited to 'packages/models.py')
-rw-r--r--packages/models.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/models.py b/packages/models.py
index dd69e7d3..03f03422 100644
--- a/packages/models.py
+++ b/packages/models.py
@@ -379,6 +379,13 @@ class RelatedToBase(models.Model):
given criteria. It will not search provisions, but will find packages
named and matching repo characteristics if possible.'''
pkgs = Package.objects.normal().filter(pkgname=self.name)
+ # TODO: this may in fact be faster- select only the fields we know will
+ # actually get used, saving us some bandwidth and hopefully query
+ # construction time. However, reality hasn't quite proved it out yet.
+ #pkgs = Package.objects.select_related('repo', 'arch').only(
+ # 'id', 'pkgname', 'epoch', 'pkgver', 'pkgrel',
+ # 'repo__id', 'repo__name', 'repo__testing', 'repo__staging',
+ # 'arch__id', 'arch__name').filter(pkgname=self.name)
if not self.pkg.arch.agnostic:
# make sure we match architectures if possible
arches = self.pkg.applicable_arches()