afs commented on issue #3044:
URL: https://github.com/apache/jena/issues/3044#issuecomment-2702017658

   A sequence path should be expanded to triple patterns.
   
   ```sparql
   { ?x rdfs:label / rdfs:label ?z }
   ```
   ```sparql
   {
   ?x rdfs:label ??P1 .
   ??P1  rdfs:label ?z .
   }
   ```
   Looking at the log, the timeout isn't getting forgotten - it is delayed 
(presumably by being busy in some tight loop).
   
   The execution plan for the `[20]` does not have a hash join in it. It's 
`conditional` and `sequence` but I think the OPTIONALs can massive fan-out and 
should be hash left joins.
   


-- 
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