included primitive relations in update
This commit is contained in:
parent
11a9c1bd27
commit
6933648d3b
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ public final class NodeManager {
|
|||
Relation rel = dbm.propertyToColumnName (propname);
|
||||
|
||||
// skip properties that don't need to be updated before fetching them
|
||||
if (rel != null && (rel.readonly || rel.virtual || rel.direction != Relation.FORWARD))
|
||||
if (rel != null && (rel.readonly || rel.virtual || (rel.direction != Relation.FORWARD && rel.direction != Relation.PRIMITIVE)))
|
||||
continue;
|
||||
|
||||
Property p = node.getProperty (propname, false);
|
||||
|
|
Loading…
Add table
Reference in a new issue