[DDC-1359] Deleting and inserting with unique index Created: 02/Sep/11 Updated: 09/Feb/13 Resolved: 09/Feb/13 |
|
| Status: | Closed |
| Project: | Doctrine 2 - ORM |
| Component/s: | ORM |
| Affects Version/s: | 2.0.7 |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Minor |
| Reporter: | Rafal Radulski | Assignee: | Marco Pivetta |
| Resolution: | Invalid | Votes: | 1 |
| Labels: | None | ||
| Environment: |
MySQL |
||
| Description |
|
I'm getting a database error when deleting and inserting records in a single unit of work. Consider this example: I have a user and user_info tables. user_info stores additional data about a user as a list of key-values. I created a unique index on user_info table: CREATE UNIQUE INDEX `user_info_key` ON `user_info` (`user_id` , `key` ) ; Each table is represented as an Entity class. Now, I run this code: This causes MySQL error: "Integrity constraint violation: 1062 Duplicate entry". Doctrine ORM first persists new entities and then deletes old entities. I think the relevant code is at Doctrine/ORM/UnitOfWork :277-313. Everything works fine if I add flush() before line 2. Also, everything works fine if I change the index to non-unique. |
| Comments |
| Comment by Marco Pivetta [ 08/Jul/12 ] |
|
I just got back to the UnitOfWork and (in latest master) it executes deletes as last operation (maybe to avoid cascades), and this is also documented. In my opinion, you should do the operation of computing the changeset on your `info` collection manually... |
| Comment by Marco Pivetta [ 09/Feb/13 ] |
|
Invalid usage of collection API/object graph |