Allow insertion of nodes with empty property map.
This commit is contained in:
parent
b8dbca8ce2
commit
ff563e677c
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ public final class NodeManager {
|
||||||
Relation rel = columns[i].getRelation();
|
Relation rel = columns[i].getRelation();
|
||||||
Property p = null;
|
Property p = null;
|
||||||
|
|
||||||
if ((rel != null) && (rel.isPrimitive() || rel.isReference())) {
|
if (rel != null && propMap != null && (rel.isPrimitive() || rel.isReference())) {
|
||||||
p = (Property) propMap.get(rel.getPropName());
|
p = (Property) propMap.get(rel.getPropName());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue