9
9
import org .hibernate .PessimisticLockException ;
10
10
import org .hibernate .community .dialect .InformixDialect ;
11
11
import org .hibernate .dialect .CockroachDialect ;
12
- import org .hibernate .dialect .MariaDBDialect ;
13
12
import org .hibernate .dialect .lock .PessimisticEntityLockException ;
14
13
import org .hibernate .jpa .SpecHints ;
15
14
import org .hibernate .testing .orm .AsyncExecutor ;
@@ -107,10 +106,6 @@ void testLockNoWait(SessionFactoryScope factoryScope) {
107
106
108
107
@ Test
109
108
@ RequiresDialectFeature (feature = DialectFeatureChecks .SupportsSkipLocked .class )
110
- @ SkipForDialect (
111
- dialectClass = MariaDBDialect .class ,
112
- reason = "Cannot figure this out - it passes when run by itself, but fails when run as part of the complete suite."
113
- )
114
109
void testQuerySkipLocked (SessionFactoryScope factoryScope ) {
115
110
factoryScope .inTransaction ( (session1 ) -> {
116
111
session1 .find (Book .class ,1 , PESSIMISTIC_WRITE );
@@ -129,10 +124,6 @@ void testQuerySkipLocked(SessionFactoryScope factoryScope) {
129
124
130
125
@ Test
131
126
@ RequiresDialectFeature (feature = DialectFeatureChecks .SupportsSkipLocked .class )
132
- @ SkipForDialect (
133
- dialectClass = MariaDBDialect .class ,
134
- reason = "Cannot figure this out - it passes when run by itself, but fails when run as part of the complete suite."
135
- )
136
127
@ SkipForDialect (dialectClass = InformixDialect .class , reason = "no failure" )
137
128
void testFindSkipLocked (SessionFactoryScope factoryScope ) {
138
129
factoryScope .inTransaction ( (session ) -> {
0 commit comments