use of org.openrdf.query.algebra.LeftJoin in project incubator-rya by apache.
the class PCJNodeConsolidatorTest method testExactMatchReOrdered.
@Test
public void testExactMatchReOrdered() throws Exception {
String query1 = //
"" + //
"SELECT ?a ?b ?c ?d ?e ?f ?g ?h" + //
"{" + //
" ?a <uri:p0> ?b ." + //
" OPTIONAL{?b <uri:p2> ?c. ?c <uri:p1> ?d} . " + //
" OPTIONAL{?b <uri:p3> ?e. ?e <uri:p1> ?f} . " + //
" OPTIONAL{?b <uri:p4> ?g. ?g <uri:p1> ?h} . " + //
"}";
String query2 = //
"" + //
"SELECT ?a ?b ?c ?d ?e ?f ?g ?h" + //
"{" + //
" ?a <uri:p0> ?b ." + //
" OPTIONAL{?b <uri:p2> ?c. ?c <uri:p1> ?d} . " + //
" OPTIONAL{?b <uri:p4> ?g. ?g <uri:p1> ?h} . " + //
" OPTIONAL{?b <uri:p3> ?e. ?e <uri:p1> ?f} . " + //
"}";
SPARQLParser parser = new SPARQLParser();
ParsedQuery pq1 = parser.parseQuery(query1, null);
ParsedQuery pq2 = parser.parseQuery(query2, null);
TupleExpr te1 = pq1.getTupleExpr();
TupleExpr te2 = pq2.getTupleExpr();
LeftJoin join1 = (LeftJoin) ((Projection) te1).getArg();
LeftJoin join2 = (LeftJoin) ((Projection) te2).getArg();
QuerySegment<ExternalTupleSet> seg1 = qFactory.getQuerySegment(join1);
QuerySegment<ExternalTupleSet> seg2 = qFactory.getQuerySegment(join2);
QueryNodeConsolidator consolidator = new QueryNodeConsolidator(seg1.getOrderedNodes(), seg2.getOrderedNodes());
List<QueryModelNode> queryNodes = new ArrayList<>(seg2.getOrderedNodes());
Assert.assertTrue(consolidator.consolidateNodes());
Assert.assertEquals(consolidator.getQueryNodes(), queryNodes);
}
use of org.openrdf.query.algebra.LeftJoin in project incubator-rya by apache.
the class PCJNodeConsolidatorTest method testExactMatchLargeReOrdered.
@Test
public void testExactMatchLargeReOrdered() throws Exception {
String query1 = //
"" + //
"SELECT ?a ?b ?c ?d ?e ?f ?g ?h" + //
"{" + //
" ?a <uri:p0> ?b ." + //
" OPTIONAL{?b <uri:p2> ?c. ?c <uri:p1> ?d} . " + //
" OPTIONAL{?b <uri:p3> ?e. ?e <uri:p1> ?f} . " + //
" OPTIONAL{?b <uri:p4> ?g. ?g <uri:p1> ?h} . " + //
" OPTIONAL{?b <uri:p4> ?i. ?i <uri:p1> ?j} . " + //
" OPTIONAL{?b <uri:p4> ?k. ?k <uri:p1> ?l} . " + //
" OPTIONAL{?b <uri:p4> ?m. ?m <uri:p1> ?n} . " + //
" OPTIONAL{?b <uri:p4> ?o. ?o <uri:p1> ?p} . " + //
"}";
String query2 = //
"" + //
"SELECT ?a ?b ?c ?d ?e ?f ?g ?h" + //
"{" + //
" ?a <uri:p0> ?b ." + //
" OPTIONAL{?b <uri:p4> ?o. ?o <uri:p1> ?p} . " + //
" OPTIONAL{?b <uri:p4> ?g. ?g <uri:p1> ?h} . " + //
" OPTIONAL{?b <uri:p2> ?c. ?c <uri:p1> ?d} . " + //
" OPTIONAL{?b <uri:p4> ?i. ?i <uri:p1> ?j} . " + //
" OPTIONAL{?b <uri:p4> ?m. ?m <uri:p1> ?n} . " + //
" OPTIONAL{?b <uri:p4> ?k. ?k <uri:p1> ?l} . " + //
" OPTIONAL{?b <uri:p3> ?e. ?e <uri:p1> ?f} . " + //
"}";
SPARQLParser parser = new SPARQLParser();
ParsedQuery pq1 = parser.parseQuery(query1, null);
ParsedQuery pq2 = parser.parseQuery(query2, null);
TupleExpr te1 = pq1.getTupleExpr();
TupleExpr te2 = pq2.getTupleExpr();
LeftJoin join1 = (LeftJoin) ((Projection) te1).getArg();
LeftJoin join2 = (LeftJoin) ((Projection) te2).getArg();
QuerySegment<ExternalTupleSet> seg1 = qFactory.getQuerySegment(join1);
QuerySegment<ExternalTupleSet> seg2 = qFactory.getQuerySegment(join2);
QueryNodeConsolidator consolidator = new QueryNodeConsolidator(seg1.getOrderedNodes(), seg2.getOrderedNodes());
List<QueryModelNode> queryNodes = new ArrayList<>(seg2.getOrderedNodes());
Assert.assertTrue(consolidator.consolidateNodes());
Assert.assertEquals(consolidator.getQueryNodes(), queryNodes);
}
Aggregations