Skip to content
Snippets Groups Projects
Verified Commit 37d28b9e authored by Timm Fitschen's avatar Timm Fitschen
Browse files

DOC: update CHANGELOG and add source docs

parent 106723aa
No related branches found
No related tags found
2 merge requests!96DOC: Added CITATION.cff to the list of files in the release guide where the...,!94fix https://gitlab.com/caosdb/caosdb-server/-/issues/216
Pipeline #37156 passed
......@@ -32,6 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ###
* Unexpected Server Error when inserting an Entity.
[#216](https://gitlab.com/caosdb/caosdb-server/-/issues/216)
* Bad performance due to the execution of unnecessary jobs during retrieval.
[#189](https://gitlab.com/caosdb/caosdb-server/-/issues/189)
* Query Language: Parentheses change filter to subproperty filter
......
......@@ -96,7 +96,10 @@ public class DatabaseUtils {
&& !p.isDatatypeOverride()
&& (!p.hasProperties() || hasUniquePropertyId(p, e))
&& !(p.getDatatype() instanceof AbstractCollectionDatatype)) {
// if p has no sub-properties, just add it
// this property can be represented without any replacement. We explicitly
// setReplacement(null) because there is a corner case (related to the inheritance of
// properties) where there is a replacement present which belongs to the parent entity, see
// https://gitlab.com/caosdb/caosdb-server/-/issues/216.
p.setReplacement(null);
} else {
stage1Inserts.add(makeReplacement(p));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment