Opened 19 months ago
Closed 19 months ago
#34480 closed Bug (fixed)
Annotating with Chr raises ValueError
Reported by: | Jacob Walls | Owned by: | Jacob Walls |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | 4.2 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
>>> Author.objects.annotate(first_letter=Chr(Value(77))) File "/Users/.../.../.venv/lib/python3.9/site-packages/django/db/models/expressions.py", line 369, in <lambda> else int(value) ValueError: invalid literal for int() with base 10: 'M'
I'm suggesting in Chr
we can set output_field = CharField()
to prevent this.
Change History (5)
comment:1 by , 19 months ago
Description: | modified (diff) |
---|
comment:2 by , 19 months ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 by , 19 months ago
Has patch: | set |
---|
comment:4 by , 19 months ago
Triage Stage: | Accepted → Ready for checkin |
---|
Note:
See TracTickets
for help on using tickets.
PR