You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cayenne.apache.org by "Andrey Razumovsky (JIRA)" <de...@cayenne.apache.org> on 2008/10/13 11:53:11 UTC

[jira] Closed: (CAY-1118) ROP: setToXXX(null) does not update reverse rel

     [ https://issues.apache.org/cayenne/browse/CAY-1118?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrey Razumovsky closed CAY-1118.
----------------------------------

    Resolution: Fixed

Unsetting of to-many relationships worked incorrectly in ROP and is now fixed

> ROP: setToXXX(null) does not update reverse rel
> -----------------------------------------------
>
>                 Key: CAY-1118
>                 URL: https://issues.apache.org/cayenne/browse/CAY-1118
>             Project: Cayenne
>          Issue Type: Bug
>          Components: Cayenne Core Library
>    Affects Versions: 3.0
>            Reporter: Andrey Razumovsky
>            Assignee: Andrey Razumovsky
>             Fix For: 3.0
>
>
> Following test fails. The reason is that setToXXX(null) causes an invalidation on reverse property but not a removal of reverse object
>         ClientMtTable1 o1 = context.newObject(ClientMtTable1.class);
>         ClientMtTable2 o2 = context.newObject(ClientMtTable2.class);
>         o2.setTable1(o1);
>         
>         assertEquals(1, o1.getTable2Array().size());
>         context.commitChanges(); //important line!
>         
>         o2.setTable1(null);
>         assertEquals(0, o1.getTable2Array().size());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.