Skip to content

Commit 0bbf4b6

Browse files
committed
HHH-19575 Backwards compatibility for Hibernate Reactive
1 parent 9553e2d commit 0bbf4b6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

hibernate-core/src/main/java/org/hibernate/sql/results/graph/embeddable/internal/EmbeddableInitializerImpl.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,17 @@ public int getSubclassId() {
9999
}
100100
}
101101

102+
// Used by Hibernate Reactive
103+
@Deprecated(forRemoval = true)
104+
public EmbeddableInitializerImpl(
105+
EmbeddableResultGraphNode resultDescriptor,
106+
BasicFetch<?> discriminatorFetch,
107+
InitializerParent<?> parent,
108+
AssemblerCreationState creationState,
109+
boolean isResultInitializer) {
110+
this( resultDescriptor, discriminatorFetch, null, parent, creationState, isResultInitializer );
111+
}
112+
102113
public EmbeddableInitializerImpl(
103114
EmbeddableResultGraphNode resultDescriptor,
104115
BasicFetch<?> discriminatorFetch,

0 commit comments

Comments
 (0)