Search in sources :

Example 21 with LockOptions

use of org.hibernate.LockOptions in project hibernate-orm by hibernate.

the class OracleFollowOnLockingTest method testPessimisticLockWithMaxResultsAndOrderByWhileExplicitlyDisablingFollowOnLockingThenFails.

@Test
public void testPessimisticLockWithMaxResultsAndOrderByWhileExplicitlyDisablingFollowOnLockingThenFails() {
    final Session session = openSession();
    session.beginTransaction();
    sqlStatementInterceptor.getSqlQueries().clear();
    try {
        List<Product> products = session.createQuery("select p from Product p order by p.id", Product.class).setLockOptions(new LockOptions(LockMode.PESSIMISTIC_WRITE).setFollowOnLocking(false)).setMaxResults(10).getResultList();
        fail("Should throw exception since Oracle does not support ORDER BY if follow on locking is disabled");
    } catch (PersistenceException expected) {
        assertEquals(SQLGrammarException.class, expected.getCause().getClass());
    }
}
Also used : LockOptions(org.hibernate.LockOptions) SQLGrammarException(org.hibernate.exception.SQLGrammarException) PersistenceException(javax.persistence.PersistenceException) Session(org.hibernate.Session) Test(org.junit.Test)

Example 22 with LockOptions

use of org.hibernate.LockOptions in project hibernate-orm by hibernate.

the class SQLServer2005LockHintsTest method lockOptions.

@Override
protected LockOptions lockOptions(String aliasToLock) {
    LockOptions lockOptions = new LockOptions(LockMode.PESSIMISTIC_WRITE).setTimeOut(LockOptions.NO_WAIT);
    lockOptions.setAliasSpecificLockMode(aliasToLock, LockMode.PESSIMISTIC_WRITE);
    return lockOptions;
}
Also used : LockOptions(org.hibernate.LockOptions)

Example 23 with LockOptions

use of org.hibernate.LockOptions in project hibernate-orm by hibernate.

the class HANALockTimeoutTest method testLockTimeoutNoAliasNoWait.

@Test
public void testLockTimeoutNoAliasNoWait() {
    assertEquals(" for update nowait", dialect.getForUpdateString(new LockOptions(LockMode.PESSIMISTIC_READ).setTimeOut(LockOptions.NO_WAIT)));
    assertEquals(" for update nowait", dialect.getForUpdateString(new LockOptions(LockMode.PESSIMISTIC_WRITE).setTimeOut(LockOptions.NO_WAIT)));
}
Also used : LockOptions(org.hibernate.LockOptions) Test(org.junit.Test)

Example 24 with LockOptions

use of org.hibernate.LockOptions in project hibernate-orm by hibernate.

the class OracleLockTimeoutTest method testLockTimeoutAliasNoTimeout.

@Test
public void testLockTimeoutAliasNoTimeout() {
    String alias = "a";
    assertEquals(" for update", dialect.getForUpdateString(alias, new LockOptions(LockMode.PESSIMISTIC_READ).setAliasSpecificLockMode(alias, LockMode.PESSIMISTIC_READ)));
    assertEquals(" for update", dialect.getForUpdateString(alias, new LockOptions(LockMode.PESSIMISTIC_WRITE).setAliasSpecificLockMode(alias, LockMode.PESSIMISTIC_WRITE)));
}
Also used : LockOptions(org.hibernate.LockOptions) Test(org.junit.Test)

Example 25 with LockOptions

use of org.hibernate.LockOptions in project hibernate-orm by hibernate.

the class OracleLockTimeoutTest method testLockTimeoutNoAliasSkipLocked.

@Test
public void testLockTimeoutNoAliasSkipLocked() {
    assertEquals(" for update skip locked", dialect.getForUpdateString(new LockOptions(LockMode.PESSIMISTIC_READ).setTimeOut(LockOptions.SKIP_LOCKED)));
    assertEquals(" for update skip locked", dialect.getForUpdateString(new LockOptions(LockMode.PESSIMISTIC_WRITE).setTimeOut(LockOptions.SKIP_LOCKED)));
}
Also used : LockOptions(org.hibernate.LockOptions) Test(org.junit.Test)

Aggregations

LockOptions (org.hibernate.LockOptions)64 Test (org.junit.Test)43 Session (org.hibernate.Session)23 TestForIssue (org.hibernate.testing.TestForIssue)14 PersistenceException (javax.persistence.PersistenceException)5 SQLGrammarException (org.hibernate.exception.SQLGrammarException)5 LockMode (org.hibernate.LockMode)4 ArrayList (java.util.ArrayList)3 HashMap (java.util.HashMap)3 Map (java.util.Map)3 RowSelection (org.hibernate.engine.spi.RowSelection)3 SessionFactoryImplementor (org.hibernate.engine.spi.SessionFactoryImplementor)3 SharedSessionContractImplementor (org.hibernate.engine.spi.SharedSessionContractImplementor)3 AfterLoadAction (org.hibernate.loader.spi.AfterLoadAction)3 Loadable (org.hibernate.persister.entity.Loadable)3 RequiresDialect (org.hibernate.testing.RequiresDialect)3 Serializable (java.io.Serializable)2 CallableStatement (java.sql.CallableStatement)2 PreparedStatement (java.sql.PreparedStatement)2 SQLException (java.sql.SQLException)2