com.bigdata.rdf.sparql.ast.eval.hash-join-1b.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 rdf:
PREFIX rdfs:
PREFIX foaf:
SELECT ?x ?o
WHERE {
# Turn off the query optimizer for this query so we can control the order
# in which the BGPs will be evaluated.
hint:Query hint:optimizer "None" .
# Force the use of the HTree.
hint:Query hint:nativeHashJoins "true" .
?x rdf:type foaf:Person .
?x rdfs:label ?o .
# Request a hash join for the rdfs:label BGP.
hint:Prior hint:hashJoin "true" .
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy