Fix assignment in NativeQueryBuilder.

Original Pull Request: #2543
Closes #2542

(cherry picked from commit 9c497c2dea1fabba9ef379e96a1e13dbf811342a)
This commit is contained in:
Pierre Mazieres @Semarchy 2023-05-10 18:31:04 +02:00 committed by Peter-Josef Meisch
parent e1741ca255
commit 1d23fb14fa
No known key found for this signature in database
GPG Key ID: DE108246970C7708

View File

@ -184,7 +184,7 @@ public class NativeQueryBuilder extends BaseQueryBuilder<NativeQuery, NativeQuer
Assert.notNull(searchExtensions, "searchExtensions must not be null");
searchExtensions.putAll(searchExtensions);
this.searchExtensions.putAll(searchExtensions);
return this;
}