Opened 14 years ago

Closed 11 years ago

#12222 closed New feature (duplicate)

rename items in values()

Reported by: anonymous Owned by: nobody
Component: Database layer (models, ORM) Version: 1.1
Severity: Normal Keywords:
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 Luke Plant)

I wish there were a way to do instead of this:

MyModel.objects.values('otherfield__anotherjoinedfield__blah__derp__foo__doop')
{'otherfield__anotherjoinedfield__blah__derp__foo__doop': 4, 'otherfield__anotherjoinedfield__blah__derp__foo__doop': 5, [...]

you could do this:

MyModel.objects.values(val='otherfield__anotherjoinedfield__blah__derp__foo__doop')
{'val': 4, 'val': 5, [...]

Change History (8)

comment:1 by Russell Keith-Magee, 14 years ago

Resolution: invalid
Status: newclosed
  1. Please use preview.
  2. I think you're looking for !__in.

comment:2 by anonymous, 14 years ago

Sorry I didn't realize it would change the formatting. I'd fix it if I could but I can't figure out how to edit it.

"__in" has nothing to do with what the ticket was about. You know how you can rename an annotation by doing .annotate(name=Sum('field'))? Well that functionality should exist for values() as well.

comment:3 by Karen Tracey, 14 years ago

Description: modified (diff)

comment:4 by Luke Plant, 14 years ago

Description: modified (diff)

comment:5 by simonotron, 12 years ago

Easy pickings: unset
Severity: Normal
Type: Uncategorized
UI/UX: unset

For what it's worth, I also think this would be useful...

comment:6 by Luke Plant, 12 years ago

Component: UncategorizedDatabase layer (models, ORM)
Resolution: invalid
Status: closedreopened
Triage Stage: UnreviewedAccepted
Type: UncategorizedNew feature

I think Russell misread the ticket, probably due to lack of formatting. It sounds like a reasonable idea, and API seems OK.

comment:7 by Aymeric Augustin, 11 years ago

Status: reopenednew

comment:8 by Baptiste Mispelon, 11 years ago

Resolution: duplicate
Status: newclosed

This is a duplicate of #16735.

I'm closing this one because the other one seems to have more activity.

Note: See TracTickets for help on using tickets.
Back to Top