Skip to content

Commit

Permalink
HHH-15752 Add Boolean support to oracle dialect. fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ejannett committed May 15, 2024
1 parent 2995422 commit b33127f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void startUp(SessionFactoryScope scope) {
}

@Test
@SkipForDialect( value = OracleDialect.class, comment = "External driver fix required")
@SkipForDialect( dialectClass = OracleDialect.class, reason = "External driver fix required")
public void testById(SessionFactoryScope scope) {
scope.inSession( em -> {
TableWithBooleanArrays tableRecord;
Expand All @@ -89,7 +89,7 @@ public void testById(SessionFactoryScope scope) {
}

@Test
@SkipForDialect( value = OracleDialect.class, comment = "External driver fix required")
@SkipForDialect( dialectClass = OracleDialect.class, reason = "External driver fix required")
public void testQueryById(SessionFactoryScope scope) {
scope.inSession( em -> {
TypedQuery<TableWithBooleanArrays> tq = em.createNamedQuery( "TableWithBooleanArrays.JPQL.getById", TableWithBooleanArrays.class );
Expand All @@ -101,7 +101,7 @@ public void testQueryById(SessionFactoryScope scope) {

@Test
@SkipForDialect(dialectClass = AbstractHANADialect.class, reason = "For some reason, HANA can't intersect VARBINARY values, but funnily can do a union...")
@SkipForDialect( value = OracleDialect.class, comment = "External driver fix required")
@SkipForDialect( dialectClass = OracleDialect.class, reason = "External driver fix required")
public void testQuery(SessionFactoryScope scope) {
scope.inSession( em -> {
TypedQuery<TableWithBooleanArrays> tq = em.createNamedQuery( "TableWithBooleanArrays.JPQL.getByData", TableWithBooleanArrays.class );
Expand All @@ -112,7 +112,7 @@ public void testQuery(SessionFactoryScope scope) {
}

@Test
@SkipForDialect( value = OracleDialect.class, comment = "External driver fix required")
@SkipForDialect( dialectClass = OracleDialect.class, reason = "External driver fix required")
public void testNativeQueryById(SessionFactoryScope scope) {
scope.inSession( em -> {
TypedQuery<TableWithBooleanArrays> tq = em.createNamedQuery( "TableWithBooleanArrays.Native.getById", TableWithBooleanArrays.class );
Expand Down

0 comments on commit b33127f

Please sign in to comment.