mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-16 18:05:19 +00:00
added fix for 6133
This commit is contained in:
parent
6f683e0990
commit
6f2ed35546
@ -0,0 +1,6 @@
|
||||
---
|
||||
type: fix
|
||||
issue: 6083
|
||||
backport: 7.2.2
|
||||
title: "A bug with $everything operation was discovered when trying to search using hibernate search, this change makes
|
||||
all $everything operation rely on database search until hibernate search fully supports the operation."
|
@ -482,7 +482,8 @@ public class SearchBuilder implements ISearchBuilder<JpaPid> {
|
||||
&& myParams != null
|
||||
&& myParams.getSearchContainedMode() == SearchContainedModeEnum.FALSE
|
||||
&& myFulltextSearchSvc.supportsSomeOf(myParams)
|
||||
&& myFulltextSearchSvc.supportsAllSortTerms(myResourceName, myParams);
|
||||
&& myFulltextSearchSvc.supportsAllSortTerms(myResourceName, myParams)
|
||||
&& myParams.getEverythingMode() == null;
|
||||
}
|
||||
|
||||
private void failIfUsed(String theParamName) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user