Skip to content

Commit 7b61525

Browse files
BidyadharMejannett
authored andcommitted
HHH-17404- Aggregate instance creation fix.
1 parent 86412ff commit 7b61525

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hibernate-core/src/main/java/org/hibernate/dialect/OracleDialect.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,8 @@ public void contributeTypes(TypeContributions typeContributions, ServiceRegistry
10661066

10671067
@Override
10681068
public AggregateSupport getAggregateSupport() {
1069-
return OracleAggregateSupport.valueOf( this ,false);
1069+
return OracleAggregateSupport.valueOf( this ,
1070+
!JacksonIntegration.isOracleOsonExtensionAvailable());
10701071
}
10711072

10721073
@Override

0 commit comments

Comments
 (0)