File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
hibernate-core/src/test/java/org/hibernate/orm/test/function/array Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 9
9
import java .util .List ;
10
10
11
11
import org .hibernate .cfg .AvailableSettings ;
12
+ import org .hibernate .dialect .CockroachDialect ;
12
13
13
14
import org .hibernate .testing .orm .junit .DialectFeatureChecks ;
14
15
import org .hibernate .testing .orm .junit .DomainModel ;
17
18
import org .hibernate .testing .orm .junit .SessionFactory ;
18
19
import org .hibernate .testing .orm .junit .SessionFactoryScope ;
19
20
import org .hibernate .testing .orm .junit .Setting ;
21
+ import org .hibernate .testing .orm .junit .SkipForDialect ;
20
22
import org .junit .jupiter .api .AfterEach ;
21
23
import org .junit .jupiter .api .BeforeEach ;
22
24
import org .junit .jupiter .api .Test ;
37
39
// otherwise we might run into ORA-21700: object does not exist or is marked for delete
38
40
// because the JDBC connection or database session caches something that should have been invalidated
39
41
@ ServiceRegistry (settings = @ Setting (name = AvailableSettings .CONNECTION_PROVIDER , value = "" ))
42
+ @ SkipForDialect (dialectClass = CockroachDialect .class , reason = "See https://github.com/cockroachdb/cockroach/issues/32551" )
40
43
public class ArraySliceTest {
41
44
42
45
@ BeforeEach
You can’t perform that action at this time.
0 commit comments