AbstractJoinTest.JCR_JOIN_TYPE_LEFT_OUTER,
qomFactory.sameNodeJoinCondition(LEFT, RIGHT, ".")),
qomFactory.descendantNode(LEFT, testRoot),
null, null);
QueryResult result = qom.execute();
checkResult(result, new Node[][]{{n1, null}, {n2, n2}});
}
public void testLeftOuterJoinWithPath() throws RepositoryException {
QueryObjectModel qom = createQomQuery(AbstractJoinTest.JCR_JOIN_TYPE_LEFT_OUTER, nodeName2);