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

From: Andrey Razumovsky (JIRA) ("Andrey)
Date: Mon Oct 13 2008 - 05:53:11 EDT

  • Next message: Andrus Adamchik (JIRA): "[jira] Commented: (CAY-1122) Add setColumnNamesCapitalization(String columnNameCapitalization) method to NamedQuery class"

         [ 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.
    



    This archive was generated by hypermail 2.0.0 : Mon Oct 13 2008 - 05:54:11 EDT