We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For illustration purpuses a the following repo was populated with two triples
The following query
select * { ?s ?p ?o . ?_repo1 <http://repo> ?repo1 service ?repo1 { ?s ?p2 ?o2 } optional { ?_repo2 <http://repo> ?repo2 service ?repo2 { ?s ?p3 ?o3 } } }
Fails with
Query evaluation error: SERVICE variables must be bound at evaluation time
But if I remove the last optional clause such that query becomes
optional
select * { ?s ?p ?o . ?_repo1 <http://repo> ?repo1 service ?repo1 { ?s ?p2 ?o2 } ?_repo2 <http://repo> ?repo2 service ?repo2 { ?s ?p3 ?o3 } }
It returns successfully. Also if I remove the first federated call such that the query becomes
select * { ?s ?p ?o . optional { ?_repo2 <http://repo> ?repo2 service ?repo2 { ?s ?p3 ?o3 } } }
it also works as expected. It appears like the issue started from v5.
Expected that the query with where one of the federations are inside an optional clause also works.
No response
5.1.2
Yes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current Behavior
For illustration purpuses a the following repo was populated with two triples
The following query
Fails with
But if I remove the last
optional
clause such that query becomesIt returns successfully. Also if I remove the first federated call such that the query becomes
it also works as expected. It appears like the issue started from v5.
Expected Behavior
Expected that the query with where one of the federations are inside an
optional
clause also works.Steps To Reproduce
No response
Version
5.1.2
Are you interested in contributing a solution yourself?
Yes
Anything else?
No response
The text was updated successfully, but these errors were encountered: