-
Bug
-
Resolution: Done
-
Blocker
-
4.0.0.Beta2
-
None
Edit: Ok I found the problem:
Assuming you have a node with a to be indexed property "sysName"
Then the following code does NOT index the node
Node newNode1 = session1.getRootNode().addNode("nodeWithSysName","nt:unstructured"); session1.save(); newNode1.setProperty("sysName", "foobar"); session1.save();
However this will index the node
Node newNode1 = session1.getRootNode().addNode("nodeWithSysName","nt:unstructured"); newNode1.setProperty("sysName", "foobar"); session1.save();