HHH-18799 Temporarily skip XML embeddable tests on Oracle 23+

This commit is contained in:
Marco Belladelli 2024-11-25 12:21:44 +01:00
parent 0bb48c196c
commit ceb7e565fe
No known key found for this signature in database
GPG Key ID: DBD6E257ABE9EA3D
2 changed files with 8 additions and 0 deletions

View File

@ -9,12 +9,14 @@ import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Tuple;
import org.hibernate.annotations.JdbcTypeCode;
import org.hibernate.dialect.OracleDialect;
import org.hibernate.testing.orm.domain.gambit.EntityOfBasics;
import org.hibernate.testing.orm.domain.gambit.MutableValue;
import org.hibernate.testing.orm.junit.BaseSessionFactoryFunctionalTest;
import org.hibernate.testing.orm.junit.DialectFeatureChecks;
import org.hibernate.testing.orm.junit.Jira;
import org.hibernate.testing.orm.junit.RequiresDialectFeature;
import org.hibernate.testing.orm.junit.SkipForDialect;
import org.hibernate.type.SqlTypes;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
@ -40,6 +42,8 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
@RequiresDialectFeature(feature = DialectFeatureChecks.SupportsXmlAggregate.class)
@SkipForDialect(dialectClass = OracleDialect.class, majorVersion = 23, matchSubTypes = true,
reason = "Currently failing on Oracle 23+ due to Bug 37319693 - ORA-00600 with check constraint on xml type")
public class NestedXmlEmbeddableTest extends BaseSessionFactoryFunctionalTest {
@Override

View File

@ -8,12 +8,14 @@ import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Tuple;
import org.hibernate.annotations.JdbcTypeCode;
import org.hibernate.dialect.OracleDialect;
import org.hibernate.testing.orm.domain.gambit.EntityOfBasics;
import org.hibernate.testing.orm.domain.gambit.MutableValue;
import org.hibernate.testing.orm.junit.BaseSessionFactoryFunctionalTest;
import org.hibernate.testing.orm.junit.DialectFeatureChecks;
import org.hibernate.testing.orm.junit.JiraKey;
import org.hibernate.testing.orm.junit.RequiresDialectFeature;
import org.hibernate.testing.orm.junit.SkipForDialect;
import org.hibernate.type.SqlTypes;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
@ -37,6 +39,8 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
@RequiresDialectFeature(feature = DialectFeatureChecks.SupportsXmlAggregate.class)
@SkipForDialect(dialectClass = OracleDialect.class, majorVersion = 23, matchSubTypes = true,
reason = "Currently failing on Oracle 23+ due to Bug 37319693 - ORA-00600 with check constraint on xml type")
public class XmlEmbeddableTest extends BaseSessionFactoryFunctionalTest {
@Override