Details
-
Type:
New Feature
-
Status:
Reopened
-
Priority:
Trivial
-
Resolution: Unresolved
-
Affects Version/s: 2.0-BETA2
-
Fix Version/s: None
-
Component/s: ORM
-
Security Level: All
-
Labels:None
Description
I am getting an error: 'Notice: Undefined index: sysname in ./libraries/Doctrine/ORM/Persisters/BasicEntityPersister.php on line 434' when I try to flush a change to a property that references a unique field on another object.
From poking around in the _prepareUpdateData function, it seems that it only allows you to use identifier fields:
$newValId = $uow->getEntityIdentifier($newVal); .. $result[$owningTable][$sourceColumn] = $newValId[$targetClass->fieldNames[$targetColumn]];
I'll see if I can get a test case for this set up.
Activity
Michael Ridgway
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Attachment | DDC567Test.php [ 10589 ] |
Roman S. Borschel
made changes -
| Issue Type | Bug [ 1 ] | New Feature [ 2 ] |
Michael Ridgway
made changes -
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Invalid [ 6 ] |
Michael Ridgway
made changes -
| Resolution | Invalid [ 6 ] | |
| Status | Resolved [ 5 ] | Reopened [ 4 ] |
Roman S. Borschel
made changes -
| Priority | Major [ 3 ] | Trivial [ 5 ] |
Benjamin Eberlei
made changes -
| Workflow | jira [ 11310 ] | jira-feedback [ 14100 ] |
Benjamin Eberlei
made changes -
| Workflow | jira-feedback [ 14100 ] | jira-feedback2 [ 15964 ] |
Benjamin Eberlei
made changes -
| Workflow | jira-feedback2 [ 15964 ] | jira-feedback3 [ 18218 ] |
This list may be incomplete, as errors occurred whilst retrieving source from linked applications:
- Request to http://www.doctrine-project.org/fisheye/ failed: Error in remote call to 'FishEye 0 (http://www.doctrine-project.org/fisheye/)' (http://www.doctrine-project.org/fisheye) [AbstractRestCommand{path='/rest-service-fe/search-v1/crossRepositoryQuery', params={query=DDC-567, expand=changesets[-21:-1].revisions[0:29],reviews}, methodType=GET}] : Received status code 503 (Service Temporarily Unavailable)
Hi. That is right. Foreign keys (join columns) must point to primary keys, not arbitrary other columns, whether they're unique or not, Doctrine does not know.
In other words, joinColumn must always refer to an identifier/pk. I'm not sure but I think anything else would be a pretty strange relational model, too, but there may be usecases we have not yet encountered.
I'm afraid this will not be possible and would be very hard to implement. Of course if somebody has a patch we happily accept it (after reviewing).
Leaving this open in the case somebody wants to work on it.