Prep for 5.0.2
This commit is contained in:
parent
5482367e37
commit
760d19cf89
|
@ -63,6 +63,7 @@ public enum VersionEnum {
|
|||
V4_3_0, // 4.3.0 was renamed to 5.0.0 during the cycle
|
||||
V5_0_0,
|
||||
V5_0_1,
|
||||
V5_0_2,
|
||||
V5_1_0;
|
||||
|
||||
public static VersionEnum latestVersion() {
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- item:
|
||||
type: "add"
|
||||
title: "This release corrects a snapshot dependency on org.hl7.fhir.core that was accidentally
|
||||
left in HAPI FHIR 5.0.1."
|
||||
- item:
|
||||
type: "change"
|
||||
title: "The default setting for the partition mode's Include Hashes in Search Indexes setting was
|
||||
incorrectly set to true in HAPI FHIR 5.0.0 and has now been changed to false, as this is a more sensible
|
||||
default. Note that this wil affect existing systems that are trying this feature out. A manual reindex of
|
||||
data may be required."
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
release-date: "2020-06-02"
|
||||
codename: "Labrador"
|
|
@ -27,10 +27,10 @@ public class PartitionSettings {
|
|||
|
||||
private boolean myPartitioningEnabled = false;
|
||||
private CrossPartitionReferenceMode myAllowReferencesAcrossPartitions = CrossPartitionReferenceMode.NOT_ALLOWED;
|
||||
private boolean myIncludePartitionInSearchHashes = true;
|
||||
private boolean myIncludePartitionInSearchHashes = false;
|
||||
|
||||
/**
|
||||
* If set to <code>true</code> (default is <code>true</code>) the <code>PARTITION_ID</code> value will be factored into the
|
||||
* If set to <code>true</code> (default is <code>false</code>) the <code>PARTITION_ID</code> value will be factored into the
|
||||
* hash values used in the <code>HFJ_SPIDX_xxx</code> tables, removing the need to explicitly add a selector
|
||||
* on this column in queries. If set to <code>false</code>, an additional selector is used instead, which may perform
|
||||
* better when using native database partitioning features.
|
||||
|
@ -43,7 +43,7 @@ public class PartitionSettings {
|
|||
}
|
||||
|
||||
/**
|
||||
* If set to <code>true</code> (default is <code>true</code>) the <code>PARTITION_ID</code> value will be factored into the
|
||||
* If set to <code>true</code> (default is <code>false</code>) the <code>PARTITION_ID</code> value will be factored into the
|
||||
* hash values used in the <code>HFJ_SPIDX_xxx</code> tables, removing the need to explicitly add a selector
|
||||
* on this column in queries. If set to <code>false</code>, an additional selector is used instead, which may perform
|
||||
* better when using native database partitioning features.
|
||||
|
|
Loading…
Reference in New Issue