HHH-7107 org.hibernate.test.locking.LockModeTest hangs on Sybase 15.5 and DB2-97
This commit is contained in:
parent
749f7c1eb5
commit
38c4f02cea
|
@ -29,6 +29,7 @@ import org.hibernate.LockMode;
|
|||
import org.hibernate.LockOptions;
|
||||
import org.hibernate.PessimisticLockException;
|
||||
import org.hibernate.Session;
|
||||
import org.hibernate.dialect.SybaseASE15Dialect;
|
||||
import org.hibernate.exception.GenericJDBCException;
|
||||
import org.hibernate.exception.LockAcquisitionException;
|
||||
|
||||
|
@ -37,6 +38,7 @@ import org.junit.Before;
|
|||
import org.junit.Test;
|
||||
|
||||
import org.hibernate.testing.FailureExpected;
|
||||
import org.hibernate.testing.SkipForDialect;
|
||||
import org.hibernate.testing.TestForIssue;
|
||||
import org.hibernate.testing.async.Executable;
|
||||
import org.hibernate.testing.async.TimedExecutor;
|
||||
|
@ -52,6 +54,8 @@ import static org.junit.Assert.fail;
|
|||
* @author Steve Ebersole
|
||||
*/
|
||||
@TestForIssue( jiraKey = "HHH-5275")
|
||||
@SkipForDialect(value=SybaseASE15Dialect.class, strictMatching=true,
|
||||
comment = "skip this test on Sybase ASE 15.5, but run it on 15.7, see HHH-6820")
|
||||
public class LockModeTest extends BaseCoreFunctionalTestCase {
|
||||
private Long id;
|
||||
|
||||
|
|
Loading…
Reference in New Issue