From dev-return-10799-apmail-openjpa-dev-archive=openjpa.apache.org@openjpa.apache.org Wed Mar 04 19:44:20 2009 Return-Path: Delivered-To: apmail-openjpa-dev-archive@www.apache.org Received: (qmail 51006 invoked from network); 4 Mar 2009 19:44:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Mar 2009 19:44:19 -0000 Received: (qmail 91527 invoked by uid 500); 4 Mar 2009 19:44:19 -0000 Delivered-To: apmail-openjpa-dev-archive@openjpa.apache.org Received: (qmail 91491 invoked by uid 500); 4 Mar 2009 19:44:19 -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 91480 invoked by uid 99); 4 Mar 2009 19:44:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 11:44:19 -0800 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; Wed, 04 Mar 2009 19:44:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 53C78234C4AC for ; Wed, 4 Mar 2009 11:43:56 -0800 (PST) Message-ID: <677412182.1236195836340.JavaMail.jira@brutus> Date: Wed, 4 Mar 2009 11:43:56 -0800 (PST) From: "Michael Dick (JIRA)" To: dev@openjpa.apache.org Subject: [jira] Assigned: (OPENJPA-247) new-delete-new-find doesn't work 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-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael Dick reassigned OPENJPA-247: ------------------------------------ Assignee: Michael Dick > new-delete-new-find doesn't work > -------------------------------- > > Key: OPENJPA-247 > URL: https://issues.apache.org/jira/browse/OPENJPA-247 > Project: OpenJPA > Issue Type: Bug > Reporter: Dain Sundstrom > Assignee: Michael Dick > Attachments: OPENJPA-247.patch > > > I have a piece of code that effectively does the same thing the following test does: > private void newDeleteNew() throws Exception { > beginTx(); > // Create new > Person dain = new Person(); > dain.setName("dain"); > assertFalse(entityManager.contains(dain)); > entityManager.persist(dain); > entityManager.flush(); > assertTrue(entityManager.contains(dain)); > // Find and verify > dain = entityManager.find(Person.class, "dain"); > assertNotNull(dain); > assertEquals("dain", dain.getName()); > // Delete > entityManager.remove(dain); > entityManager.flush(); > assertFalse(entityManager.contains(dain)); > // Recreate > dain = new Person(); > dain.setName("dain"); > assertFalse(entityManager.contains(dain)); > entityManager.persist(dain); > entityManager.flush(); > assertTrue(entityManager.contains(dain)); > // Find and verify > dain = entityManager.find(Person.class, "dain"); > assertNotNull(dain); // <<<<<<< FAILS > assertEquals("dain", dain.getName()); > commitTx(); > } > The test fails at the marked point, because the entityManager seems to think the "dain" entity is still deleted. I assume this type of code would work. Is this a bug or is my assumption wrong? > BTW, I'm using 0.9.8-incubating-SNAPSHOT > And here is my entity class: > @Entity > public class Person { > private String name; > @Id > public String getName() { > return name; > } > public void setName(String name) { > this.name = name; > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.