Fix a test regression
This commit is contained in:
parent
cff79e6aef
commit
f7ad0bc0d8
|
@ -33,7 +33,7 @@ public interface IRestfulClient extends IBasicClient {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The "@Search" annotation indicates that this method supports the
|
* The "@Search" annotation indicates that this method supports the
|
||||||
* search operation. You may have many different method annotated with
|
* search operation. You may have many different methods annotated with
|
||||||
* this annotation, to support many different search criteria. This
|
* this annotation, to support many different search criteria. This
|
||||||
* example searches by family name.
|
* example searches by family name.
|
||||||
*
|
*
|
||||||
|
|
|
@ -55,7 +55,7 @@ public class RestfulObservationResourceProvider implements IResourceProvider {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The "@Search" annotation indicates that this method supports the
|
* The "@Search" annotation indicates that this method supports the
|
||||||
* search operation. You may have many different method annotated with
|
* search operation. You may have many different methods annotated with
|
||||||
* this annotation, to support many different search criteria. This
|
* this annotation, to support many different search criteria. This
|
||||||
* example searches by family name.
|
* example searches by family name.
|
||||||
*
|
*
|
||||||
|
|
|
@ -56,7 +56,7 @@ public class RestfulPatientResourceProvider implements IResourceProvider {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The "@Search" annotation indicates that this method supports the
|
* The "@Search" annotation indicates that this method supports the
|
||||||
* search operation. You may have many different method annotated with
|
* search operation. You may have many different methods annotated with
|
||||||
* this annotation, to support many different search criteria. This
|
* this annotation, to support many different search criteria. This
|
||||||
* example searches by family name.
|
* example searches by family name.
|
||||||
*
|
*
|
||||||
|
|
|
@ -276,7 +276,7 @@ public class SearchParamWithInlineReferencesExtractor {
|
||||||
myEntityManager.persist(next);
|
myEntityManager.persist(next);
|
||||||
haveNewParams = true;
|
haveNewParams = true;
|
||||||
}
|
}
|
||||||
if (theEntity.getParamsCompositeStringUnique().size() > 0 || haveNewParams) {
|
if (theParams.myCompositeStringUniques.size() > 0 || haveNewParams) {
|
||||||
theEntity.setParamsCompositeStringUniquePresent(true);
|
theEntity.setParamsCompositeStringUniquePresent(true);
|
||||||
} else {
|
} else {
|
||||||
theEntity.setParamsCompositeStringUniquePresent(false);
|
theEntity.setParamsCompositeStringUniquePresent(false);
|
||||||
|
|
|
@ -887,6 +887,7 @@ public class FhirResourceDaoR4SearchOptimizedTest extends BaseJpaR4Test {
|
||||||
* Select the version from HFJ_RES_VER
|
* Select the version from HFJ_RES_VER
|
||||||
* Select the current token indexes
|
* Select the current token indexes
|
||||||
*/
|
*/
|
||||||
|
myCaptureQueriesListener.logSelectQueriesForCurrentThread();
|
||||||
assertEquals(3, myCaptureQueriesListener.countSelectQueriesForCurrentThread());
|
assertEquals(3, myCaptureQueriesListener.countSelectQueriesForCurrentThread());
|
||||||
assertEquals(0, myCaptureQueriesListener.countDeleteQueriesForCurrentThread());
|
assertEquals(0, myCaptureQueriesListener.countDeleteQueriesForCurrentThread());
|
||||||
assertEquals(1, myCaptureQueriesListener.countInsertQueriesForCurrentThread()); // Add an entry to HFJ_RES_VER
|
assertEquals(1, myCaptureQueriesListener.countInsertQueriesForCurrentThread()); // Add an entry to HFJ_RES_VER
|
||||||
|
|
Loading…
Reference in New Issue