com.bigdata.rdf.sparql.ast.eval.include_03a.rq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigdata-rdf-test Show documentation
Show all versions of bigdata-rdf-test Show documentation
Blazegraph(TM) RDF Test Suites
prefix :
prefix rdf:
prefix rdfs:
prefix foaf:
SELECT ?x ?y WHERE {
# Turn off the join order optimizer.
hint:Query hint:optimizer "None" .
# Run joins in the given order (INCLUDE is 1st).
# SCAN => {(x=Mike,y=2);(x=Bryan;y=4);(x=DC,y=1)}
INCLUDE %solutionSet1 .
# JOIN on (x) => {(x=Mike,y=2);(x=Bryan,y=4)}
?x rdf:type foaf:Person .
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy