Skip to content

Commit

Permalink
HHH-10955 - PessimisticWriteLockTimeoutTest#testSkipLocked should run…
Browse files Browse the repository at this point in the history
… only on PostgreSQL 9.5
  • Loading branch information
vladmihalcea committed Jul 14, 2016
1 parent f5e10c2 commit 9ac0040
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -6,6 +6,7 @@
import org.hibernate.boot.SessionFactoryBuilder;
import org.hibernate.dialect.Oracle8iDialect;
import org.hibernate.dialect.PostgreSQL81Dialect;
import org.hibernate.dialect.PostgreSQL95Dialect;
import org.hibernate.dialect.SQLServer2005Dialect;

import org.hibernate.testing.RequiresDialect;
Expand All @@ -19,7 +20,6 @@
/**
* @author Vlad Mihalcea
*/
@RequiresDialect({ Oracle8iDialect.class, PostgreSQL81Dialect.class} )
public class PessimisticWriteLockTimeoutTest
extends BaseNonConfigCoreFunctionalTestCase {

Expand Down Expand Up @@ -78,6 +78,7 @@ public void testNoWait()
}

@Test
@RequiresDialect({ Oracle8iDialect.class, PostgreSQL95Dialect.class })
public void testSkipLocked()
throws NoSuchFieldException, IllegalAccessException {

Expand Down

0 comments on commit 9ac0040

Please sign in to comment.