com.bigdata.rdf.sparql.ast.eval.include_03.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 2nd).
# RANGE SCAN x => {(x=Mike);(x=Bryan)}
?x rdf:type foaf:Person .
# JOIN on (x) => {(x=Mike,y=2);(x=Bryan;y=4)}
INCLUDE %solutionSet1 .
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy