Opened 6 years ago

Last modified 5 years ago

#29429 closed Bug

Postgres ArrayField doesn't work properly. — at Version 2

Reported by: creative3000 Owned by: creative3000
Component: contrib.postgres Version: 2.0
Severity: Normal Keywords: db orm ArrayField postgres
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by creative3000)

When you filter by len like in documentation example:

  Post.objects.filter(tags__len=1)

But if you try to annotate something an error pops up example:

 Post.objects.all().annotate(tag_len=F('tags__len'))

It really seems that it should work by default, but instead I needed to use something like this

 Post.objects.all().annotate(tag_len=Func(F('tags'), 1, function='array_length'))

Change History (2)

comment:1 by creative3000, 6 years ago

Description: modified (diff)

comment:2 by creative3000, 6 years ago

Description: modified (diff)
Owner: changed from nobody to creative3000
Status: newassigned
Note: See TracTickets for help on using tickets.
Back to Top