08-30-06 12:11 AM
IsTransactionalFalse makes invalid assumption that transaction is optimistic
----------------------------------------------------------------------------
Key: JDO-409
URL: http://issues.apache.org/jira/browse/JDO-409
Project: JDO
Issue Type: Bug
Components: tck20
Affects Versions: JDO 2 final
Reporter: Marc Prud'hommeaux
The test IsTransactionalFalse.testIsTransactionalFalse mandates that an inst
ance will be persistent-clean after a field is accessed in a transaction. Ho
wever, when the transaction type is optimistic, it is also valid for the ins
tance to be persistent-nont
ransactional after a field access.
The test can be fixed by ensuring that the transaction is a datastore transa
ction. E.g.:
public void testIsTransactionalFalse() {
pm = getPM();
Transaction tx = pm.currentTransaction();
tx.setOptimistic(false); // make sure the transaction is not optimisitic
tx.begin();
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://iss
ues.apache.org/ji...nistrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
[ Post a follow-up to this message ]
|