temporarily disable group_by
This commit is contained in:
parent
5e2410712e
commit
ab1ac13909
1 changed files with 5 additions and 1 deletions
|
@ -228,9 +228,13 @@ class Parser(object):
|
||||||
self._joins = []
|
self._joins = []
|
||||||
conditions = self.parse_conditions(data.get('query', {}).get('conditions', []),
|
conditions = self.parse_conditions(data.get('query', {}).get('conditions', []),
|
||||||
data.get('query', {}).get('operator', '&'))
|
data.get('query', {}).get('operator', '&'))
|
||||||
|
n = len(self._joins)
|
||||||
for c in conditions:
|
for c in conditions:
|
||||||
if self._joins:
|
if self._joins:
|
||||||
qs = qs.join(self._joins.pop(0))
|
qs = qs.join(self._joins.pop(0))
|
||||||
qs = qs.filter(c)
|
qs = qs.filter(c)
|
||||||
qs = qs.group_by(self._model.id)
|
# FIXME: group_by needed here to avoid
|
||||||
|
# duplicates due to joins
|
||||||
|
#if n:
|
||||||
|
# qs = qs.group_by(self._model.id)
|
||||||
return qs
|
return qs
|
||||||
|
|
Loading…
Reference in a new issue