OPENJPA-659: Dirty checking fails for runtime enhanced classes. The original case reported the failure in a Spring-Tomcat-Weaver with Embdded field. But as TestSimpleUnenhancedQuery can raise the same failure in a simpler settings. The fix is related to initializing a SaveFieldManager conditional to having loaded fields at invocation of saveFields(). The fix removes the condition and ensures that a SaveFieldManager is assocaited even when saveFields() is invoked without any field loaded.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@676727 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2008-07-14 20:46:18 +00:00
parent 94814adc39
commit 434319cfee
3 changed files with 80 additions and 0 deletions

View File

@ -2660,6 +2660,12 @@ public class StateManagerImpl
for (int i = 0, len = _loaded.length(); i < len; i++)
saveField(i);
_flags &= ~FLAG_SAVE;
// OPENJPA-659
// record a saved field manager even if no field is currently loaded
// as existence of a SaveFieldManager is critical for a dirty check
if (_saved == null)
_saved = new SaveFieldManager(this, getPersistenceCapable(),
_dirty);
}
}

View File

@ -0,0 +1,49 @@
/**
*
* 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.enhance;
import javax.persistence.EntityManager;
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
/**
* A simple query fails with unenhanced (or runtime enhanced classes)
* as originally reported in
* <A HREF="https://issues.apache.org/jira/browse/OPENJPA-659">OPENJPA-659</A>.
* The original issue reports the failure in a Spring-Tomcat-Weaver settings
* with embedded instances but even the following test shows the same failure
* in a simpler settings.
*
* @author Pinaki Poddar
*
*/
public class TestSimpleUnenhancedQuery extends SingleEMFTestCase {
public void setUp() throws Exception {
setUp(CLEAR_TABLES, UnenhancedPObject.class);
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
em.persist(new UnenhancedPObject());
em.getTransaction().commit();
}
public void testExtentQuery() {
EntityManager em = emf.createEntityManager();
assertFalse(em.createQuery("SELECT p FROM UnenhancedPObject p")
.getResultList().isEmpty());
}
}

View File

@ -0,0 +1,25 @@
/**
*
* 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.enhance;
import javax.persistence.Entity;
@Entity
public class UnenhancedPObject {
}