-
Notifications
You must be signed in to change notification settings - Fork 3
Definitions for Values Insertion #177
New issue
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
Conversation
0818131 to
95b4b0a
Compare
a0ccbd5 to
f852c60
Compare
|
In my view "values insertion" is the correct phrase to use. |
|
I note that this PR is for deep values insertion where values are insterted into subqueries. |
Only variables are "in-scope" are affected. This query has a sub-query that exposes SELECT * {
?s :p ?o .
FILTER EXISTS{ SELECT ?o { :s :q ?o }}whereas the inner SELECT * {
?s :p ?o .
FILTER EXISTS{ SELECT ?s { ?s :q :?o }}is not correlated. As algebra expressions: SELECT * {
?s :p ?o .
FILTER EXISTS { SELECT * { ?s :q ?z} }SELECT * {
?s :p ?o .
FILTER EXISTS { ?s :q :?z }are the same. |
a2db77b to
28b47ef
Compare
A replacement for
substitute.The context is taken from SEP-0007.
Currently, all new material is in a single section.
I am submitting this PR to put the content under the WG agreement for IP and Licensing.
Preview | Diff