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
The SPARQL Exists Community Group, in https://w3c.github.io/sparql-exists/docs/sparql-exists.html, has described errors in the SPARQL Query specification having to do with substitution affecting disconnected variables in https://w3c.github.io/sparql-exists/docs/sparql-exists.html#issue-5-substitution-affects-disconnected-variables
For example, in
SELECT ?x WHERE { BIND ( :d AS ?x ) FILTER EXISTS { BIND ( :e AS ?z ) SELECT ?y WHERE { ?x :p :c } } }
the substitution from 18.6 ends up producing
Join ( Extend( BGP(), ?z :e ), ToMultiSet( Project( ToList( BGP( :d :p :c ) ), { ?y } ) ) )
Some, but not all, implementations diverge from the spec here.
These errors should be fixed.
Issue #5 is an overall tracker for issues from the SPARQL Exists Community Group.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The SPARQL Exists Community Group, in https://w3c.github.io/sparql-exists/docs/sparql-exists.html,
has described errors in the SPARQL Query specification having to do with substitution affecting disconnected variables in https://w3c.github.io/sparql-exists/docs/sparql-exists.html#issue-5-substitution-affects-disconnected-variables
For example, in
the substitution from 18.6 ends up producing
Some, but not all, implementations diverge from the spec here.
These errors should be fixed.
Issue #5 is an overall tracker for issues from the SPARQL Exists Community Group.
The text was updated successfully, but these errors were encountered: