Query [get|set]LockMode not throwing correct exceptions
-------------------------------------------------------
Key: OPENJPA-1344
URL: https://issues.apache.org/jira/browse/OPENJPA-1344
Project: OpenJPA
Issue Type: Bug
Components: query
Affects Versions: 2.0.0-M2, 2.0.0-M3
Reporter: Albert Lee
Assignee: Albert Lee
Priority: Minor
Fix For: 2.0.0-M4
[get|set]LockMode method in Query interface do not correct exception per spec.
- No check on the query type and throw IllegalStationException
- Thrown TransactionRequiredExceptin for LockModeType.None. (3.8.8 Queries and
Lock Mode....If a lock mode other than NONE is specified for a query, the query
must be executed within a transaction or the TransactionRequiredException will
be thrown.)
/**
* Set the lock mode type to be used for the query execution.
* @param lockMode
* @return the same query instance
* @throws IllegalStateException if the query is found not to be
* a Java Persistence query language SELECT query
* or a Criteria API query
*/
Query setLockMode(LockModeType lockMode);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.