All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.rdf.sparql.ast.eval.hash-join-1.rq Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
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 JVM hash joins.
  hint:Query hint:nativeHashJoins "false" .

  ?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