Return-Path: Delivered-To: apmail-openjpa-dev-archive@www.apache.org Received: (qmail 10399 invoked from network); 12 May 2008 05:44:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 May 2008 05:44:19 -0000 Received: (qmail 69556 invoked by uid 500); 12 May 2008 05:44:20 -0000 Delivered-To: apmail-openjpa-dev-archive@openjpa.apache.org Received: (qmail 69523 invoked by uid 500); 12 May 2008 05:44:20 -0000 Mailing-List: contact dev-help@openjpa.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openjpa.apache.org Delivered-To: mailing list dev@openjpa.apache.org Received: (qmail 69512 invoked by uid 99); 12 May 2008 05:44:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 May 2008 22:44:20 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 May 2008 05:43:35 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id BF113234C10F for ; Sun, 11 May 2008 22:43:55 -0700 (PDT) Message-ID: <1425780082.1210571035781.JavaMail.jira@brutus> Date: Sun, 11 May 2008 22:43:55 -0700 (PDT) From: "Patrick Linskey (JIRA)" To: dev@openjpa.apache.org Subject: [jira] Resolved: (OPENJPA-231) Incorrect handling of cascading bidirectional collections during merge/attach MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/OPENJPA-231?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Patrick Linskey resolved OPENJPA-231. ------------------------------------- Resolution: Fixed > Incorrect handling of cascading bidirectional collections during merge/attach > ----------------------------------------------------------------------------- > > Key: OPENJPA-231 > URL: https://issues.apache.org/jira/browse/OPENJPA-231 > Project: OpenJPA > Issue Type: Bug > Components: kernel > Affects Versions: 0.9.7 > Environment: platform-independent > Reporter: Gokhan Ergul > Fix For: 1.1.0 > > Attachments: jira-test-case.zip, openjpa-231-1.1.x.patch, openjpa-231.patch, openjpa-jira-231-255-new.patch > > > As posted on open-jpa-dev mailing list: > ----- > I'm having a problem merging an entity, here's the simplified structure: > Class A { @OneToMany(cascade=CascadeType.ALL, mappedBy="parent") > Set b_set; > ... > } > Class B { > @ManyToOne > A parent; > @OneToMany(cascade=CascadeType.ALL, mappedBy="parent") > Set c_set; > ... > } > Class C { > @ManyToOne > B parent; > ... > } > New instances of A,B,C are persisted correctly. However when I retrieve A, add some entries to A.b_set (with some of the new B entries have attached C's), em.merge(A) fails: > - If A is detached: > org.apache.openjpa.persistence.ArgumentException: Encountered new object "B@..." in persistent field "C.parent" of managed object "C@..." during attach. However, this field does not allow cascade attach. You cannot attach a reference to a new object without cascading. > - If A is not detached: > C instances are inserted before B instances, resulting in a foreign key violation. > Setting openjpa.jdbc.SchemaFactory to 'native(ForeignKeys=true)' does not seem to have an effect. > ---- -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.