Skip to content

Commit d04caf9

Browse files
committed
Merge pull request django-nonrel#24 from emperorcezar/feature/queryemptylists
Allow for querying empty lists
2 parents e63085a + 65ba16b commit d04caf9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

djangotoolbox/db/base.py

+3
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,9 @@ def _value_for_db_collection(self, value, field, field_kind, db_type,
403403

404404
# Do convert filter parameters.
405405
if lookup:
406+
# Special case where we are looking for an empty list
407+
if lookup == 'exact' and db_type == 'list' and value == u'[]':
408+
return []
406409
value = self._value_for_db(value, subfield,
407410
subkind, db_subtype, lookup)
408411

0 commit comments

Comments
 (0)