Merge from ../branches/1.1.x. svn merge -c 656796 ../branches/1.1.x

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@666919 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Patrick Linskey 2008-06-11 23:59:15 +00:00
parent 5ee728e332
commit 12c0a094ee
2 changed files with 59 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class ManagedCache implements Serializable {
if (sm != null) { if (sm != null) {
// if it's a new instance, we know it's the only match, because // if it's a new instance, we know it's the only match, because
// other pers instances override new instances in _cache // other pers instances override new instances in _cache
if (sm.isNew()) if (sm.isNew() && !sm.isDeleted())
return (allowNew) ? sm : null; return (allowNew) ? sm : null;
if (!allowNew || !sm.isDeleted()) if (!allowNew || !sm.isDeleted())
return sm; return sm;

View File

@ -0,0 +1,58 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.openjpa.persistence.kernel;
import javax.persistence.Query;
import org.apache.openjpa.persistence.common.apps.RuntimeTest1;
import org.apache.openjpa.persistence.test.SingleEMTestCase;
public class TestMultipleInsertDeleteSameId
extends SingleEMTestCase {
public void setUp() {
setUp(RuntimeTest1.class, CLEAR_TABLES);
}
public void testMultipleInsertDelete() {
em.getTransaction().begin();
RuntimeTest1 o = new RuntimeTest1("one", 99);
em.persist(o);
Query q = em.createQuery("select o from RuntimeTest1 o "
+ " where o.stringField = 'one'");
assertEquals(o, q.getSingleResult());
em.remove(o);
assertEquals(0, q.getResultList().size());
RuntimeTest1 o2 = new RuntimeTest1("two", 99);
em.persist(o2);
q = em.createQuery("select o from RuntimeTest1 o "
+ " where o.stringField = 'two'");
assertEquals(o2, q.getSingleResult());
em.remove(o2);
assertEquals(0, q.getResultList().size());
em.getTransaction().commit();
assertNull(em.find(RuntimeTest1.class, 99));
em.close();
}
}