]
Steve Ebersole closed HHH-679.
------------------------------
Closing stale resolved issues
setLockMode(LockMode.UPGRADE_NOWAIT) does not translate to correct
SQL on Oracle
--------------------------------------------------------------------------------
Key: HHH-679
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-679
Project: Hibernate Core
Issue Type: Bug
Components: core
Environment: For Oracle 9
Reporter: Yi Jiang
Fix For: 3.1 beta 1
Original Estimate: 2h
Remaining Estimate: 2h
src/org/hibernate/dialect/Oracle9Dialect.java,
it is like:
public String getForUpdateNowaitString(String aliases) {
return getForUpdateNowaitString()+" of " + aliases;
}
needs to change to:
public String getForUpdateNowaitString(String aliases) {
return " for update of " + aliases + " nowait";
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: