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 99import java .util .List ;
1010
1111import org .hibernate .cfg .AvailableSettings ;
12+ import org .hibernate .dialect .CockroachDialect ;
1213
1314import org .hibernate .testing .orm .junit .DialectFeatureChecks ;
1415import org .hibernate .testing .orm .junit .DomainModel ;
1718import org .hibernate .testing .orm .junit .SessionFactory ;
1819import org .hibernate .testing .orm .junit .SessionFactoryScope ;
1920import org .hibernate .testing .orm .junit .Setting ;
21+ import org .hibernate .testing .orm .junit .SkipForDialect ;
2022import org .junit .jupiter .api .AfterEach ;
2123import org .junit .jupiter .api .BeforeEach ;
2224import org .junit .jupiter .api .Test ;
3739// otherwise we might run into ORA-21700: object does not exist or is marked for delete
3840// because the JDBC connection or database session caches something that should have been invalidated
3941@ ServiceRegistry (settings = @ Setting (name = AvailableSettings .CONNECTION_PROVIDER , value = "" ))
42+ @ SkipForDialect (dialectClass = CockroachDialect .class , reason = "See https://github.com/cockroachdb/cockroach/issues/32551" )
4043public class ArraySliceTest {
4144
4245 @ BeforeEach
You can’t perform that action at this time.
0 commit comments