Skip to content

Commit 8527a5b

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 5f6c79f commit 8527a5b

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
@@ -208,4 +208,9 @@ public FetchParent asFetchParent() {
208208
protected BasicFetch<?> getDiscriminatorFetch() {
209209
return discriminatorFetch;
210210
}
211+
212+
// Used by Hibernate Reactive
213+
protected @Nullable DomainResult<Boolean> getNullIndicatorResult() {
214+
return nullIndicatorResult;
215+
}
211216
}

0 commit comments

Comments
 (0)