OyvindLGjesdal commented on issue #2161:
URL: https://github.com/apache/jena/issues/2161#issuecomment-1885040042

   The second problem is just a misconfigured assembler on my part and is now 
solved.
   
   correlated joins are enabled and working, when it is placed in between the 
service and the dataset. I don't know if it would 
   
   ```
   @prefix fuseki:  <http://jena.apache.org/fuseki#> .
   @prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
   @prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
   @prefix tdb:     <http://jena.hpl.hp.com/2008/tdb#> .
   @prefix tdb2:    <http://jena.apache.org/2016/tdb#> .
   @prefix text:    <http://jena.apache.org/text#> .
   @prefix ja:      <http://jena.hpl.hp.com/2005/11/Assembler#> .
   @prefix spatial: <http://jena.apache.org/spatial#> .
   @prefix se: <http://jena.apache.org/service-enhancer#> .
   @prefix :        <#> .
   
   
   <#service>
       rdf:type fuseki:Service  ;
       fuseki:name "sparql" ;
       fuseki:serviceQuery "query" ;
       ja:context [ ja:cxtName "arq:logExec" ;  ja:cxtValue "info" ], 
[ja:cxtName "arq:optReorderBGP" ; ja:cxtValue "info"];
   
       fuseki:endpoint [ fuseki:operation fuseki:shacl ;
           fuseki:name "shacl" ];
       fuseki:dataset <#serviceenhancer> ;
   
       fuseki:serviceReadGraphStore "data" ;
       .
   
   <#serviceenhancer>  a se:DatasetServiceEnhancer ;
    ja:baseDataset <#dataset>.
   
   
   <#dataset> rdf:type tdb:DatasetTDB ;    tdb:location 
"/var/fuseki/databases/sparql" ;
       tdb:unionDefaultGraph true ;
       .
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to