Skip to content

Commit

Permalink
[#2007] NPE retrieving Entity with composite id mixing ManyToOne with…
Browse files Browse the repository at this point in the history
… basic attributes
  • Loading branch information
dreab8 committed Jan 4, 2025
1 parent cd275c6 commit 94cc89b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public CompletionStage<Void> reactiveResolveKey(NonAggregatedIdentifierMappingIn
final RowProcessingState rowProcessingState = data.getRowProcessingState();
final boolean[] dataIsMissing = {false};
return loop( getInitializers(), initializer -> {
if ( dataIsMissing[0] ) {
if ( dataIsMissing[0] || initializer == null ) {
return voidFuture();
}
final InitializerData subData = ( (ReactiveInitializer<?>) initializer )
Expand Down

0 comments on commit 94cc89b

Please sign in to comment.