Opened 18 years ago
Closed 18 years ago
#3447 closed (fixed)
Attempt to add new inline-edited item in admin interface results in ProgrammingError ERROR: invalid input syntax for integer: "". Used to work in older SVN snapshot.
Reported by: | mdkemp | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | edit_inline, ProgrammingError | |
Cc: | mir@… | Triage Stage: | Accepted |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Consider the following extremely-simple inline-edited relationship:
class Case(models.Model): name = models.CharField(maxlength=100) class Admin: pass class Label(models.Model): case = models.ForeignKey(Case, edit_inline=models.TABULAR) name = models.CharField(maxlength=100, core=True) class Admin: pass
In this case, if I try to add a new Label to a Case (while editing the Case via its admin interface view), I get the following error:
Exception Type: ProgrammingError Exception Value: ERROR: invalid input syntax for integer: "" SELECT 1 FROM "peopledb_label" WHERE "id"='' LIMIT 1
The following were the arguments from the HTTP POST operation when I clicked Save:
label.0.id '' name 'Case1' label.0.name 'TestLabel1'
It appears that when trying to determine if an old record should be updated rather than inserted into the database, an invalid query was built. I've encountered this problem now on three different django projects. This used to work in a version of django from a SVN snapshot around 12/15/2006, and does work if I revert my installed django to that version.
Change History (5)
follow-up: 3 comment:1 by , 18 years ago
comment:2 by , 18 years ago
Cc: | added |
---|
comment:3 by , 18 years ago
Replying to ramiro <rm0 _at_ gmx.net>:
I guess this is caused by [4459]
Could you try your test case against r4458 and report back please?
comment:4 by , 18 years ago
Triage Stage: | Unreviewed → Accepted |
---|
I guess this is caused by [4459]
Could you try your test case against r4458 and report back please?