RE: Cayenne CRUD tester and found bugs (1.2M4)

From: Gentry, Michael \(Contractor\) ("Gentry,)
Date: Tue Jun 14 2005 - 09:56:49 EDT

  • Next message: Mike Kienenberger: "cross-DataMap relationships"

    I can try, but not at the moment. Our firewall blocks outbound access to all ports except 80 and 443 (and even some useful sites on those ports). I'll have to try from home. It might be working now, I just haven't tried in a week or so.

    Thanks,

    /dev/mrg

    -----Original Message-----
    From: Andrus Adamchik [mailto:andru..bjectstyle.org]
    Sent: Tuesday, June 14, 2005 9:52 AM
    To: cayenne-deve..bjectstyle.org
    Subject: RE: Cayenne CRUD tester and found bugs (1.2M4)

    Let's try to figure out why commits are not working for you. Could you try
    to commit some insignificant change (like a line break in build.xml) and
    see if this works?

    Andrus

    > I have the issue (323) fixed (I think), but it's not checked in yet. I
    > need to do that soon. The last time I tried I didn't have permissions to
    > commit, but I haven't tried in a week or so. My fix may not help, but if
    > you think it might, I can -- at a minimum -- e-mail a copy of the method
    > to try out.
    >
    > Thanks,
    >
    > /dev/mrg
    >
    >
    > -----Original Message-----
    > From: Andrus Adamchik [mailto:andru..bjectstyle.org]
    > Sent: Monday, June 13, 2005 7:43 PM
    > To: cayenne-deve..bjectstyle.org
    > Subject: Re: Cayenne CRUD tester and found bugs (1.2M4)
    >
    >
    > A similar problem was identified for byte[] PKs (http://
    > objectstyle.org/jira/secure/ViewIssue.jspa?key=CAY-323). It was shown
    > that the problem is in Util.nullSafeEquals() not doing deep array
    > comparison. However I've never seen it happen for the int ObjectIds.
    > So it must be something else.
    >
    > Do you have a test case that I can run to reproduce it?
    >
    > Andrus
    >
    >
    > On Jun 11, 2005, at 4:38 PM, Mikaël Cluseau wrote:
    >
    >> Le samedi 11 juin 2005 à 13:24 -0400, Andrus Adamchik a écrit :
    >>
    >>>> I'm writing an automated CRUD tester for Cayenne (I will contribute
    >>>> it ;-)).
    >>>>
    >>>
    >>> This would definitely be extremely handy.
    >>>
    >>
    >> That will be done soon then :-)
    >>
    >>
    >>>> 1. I create a DataObject (mandatory attributes and relationships
    >>>> are filled with random values).
    >>>>
    >>>
    >>> I assume there is a "1.5. commit"?
    >>>
    >>
    >> There are commits after each modifying step: create, commit, refetch,
    >> update, commit, delete, commit (and a hidden cleanup, commit). I
    >> updated
    >> to the latest CVS version. I traced the code deeper this time :-)
    >> and I
    >> think I've found why I have this problem.
    >>
    >> For some reason I still need to find, Cayenne wishes to replace the
    >> object's PK with the same value. The problem is that then, it does the
    >> following code, lines 604 and 605 of ObjectStore.java :
    >>
    >> objectMap.remove(id);
    >> dataRowCache.forgetSnapshot(id);
    >>
    >> And since the new ObjectId is the same as the old one, it effectively
    >> removes the objet for the cache. The update is (id is the primary
    >> key) :
    >>
    >> UPDATE schema.table SET id = ?, [...] WHERE id = ?
    >> [bind: 10001, [...], 10001]
    >>
    >> I checked, I never touch the PK, so I really don't get when Cayenne
    >> changes it... I'm using PostgreSQL, if there anything with the adaptor
    >> to check. Any idea?
    >>
    >>
    >
    >



    This archive was generated by hypermail 2.0.0 : Tue Jun 14 2005 - 09:56:53 EDT