Skip to content

Commit 996335d

Browse files
DavideDbeikov
authored andcommitted
HHH-19639 Add EmbeddableFetchImpl#getNullIndicatorResult
In Hibernate Reactive, `ReactiveEmbeddableFetchImpl#createInitializers` needs to access the value to override the initializer created by ORM.
1 parent b394cca commit 996335d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,9 @@ public FetchParent asFetchParent() {
210210
protected BasicFetch<?> getDiscriminatorFetch() {
211211
return discriminatorFetch;
212212
}
213+
214+
// Used by Hibernate Reactive
215+
protected @Nullable DomainResult<Boolean> getNullIndicatorResult() {
216+
return nullIndicatorResult;
217+
}
213218
}

0 commit comments

Comments
 (0)