[hibernate-issues] [Hibernate-JIRA] Closed: (HHH-679) setLockMode(LockMode.UPGRADE_NOWAIT) does not translate to correct SQL on Oracle

Steve Ebersole (JIRA) noreply at atlassian.com
Mon Mar 21 13:00:56 EDT 2011


     [ http://opensource.atlassian.com/projects/hibernate/browse/HHH-679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

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: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list