Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2684,6 +2684,7 @@ <h4>VALUES syntax</h4>
<pre class="data nohighlight">
VALUES (?z) { ("abc") ("def") }
</pre>
<p>Note that duplicated variables are not allowed in VALUES clauses.</p>
</section>
<section id="inline-data-examples">
<h4>VALUES Examples</h4>
Expand Down Expand Up @@ -11125,7 +11126,8 @@ <h3>Grammar</h3>
nor in <code><a href="#rDeleteData">DELETE DATA</a></code>.</li>
<li>Rules for limiting the use of blank node identifiers are given in <a href="#grammarBNodes">section 19.6</a>.</li>
<li>The number of variables in the variable list of <code>VALUES</code> block
must be the same as the number of each list of associated values in the <code>DataBlock</code>.</li>
must be the same as the number of each list of associated values in the <code>DataBlock</code>,
and variables can not be repeated in the variable list.</li>
<li>Variables introduced by <code>AS</code> in a <code>SELECT</code> clause
must not already be <a href="#variableScope">in-scope</a>.</li>
<li>The variable assigned in a <code>BIND</code> clause must not be already
Expand Down Expand Up @@ -12614,6 +12616,7 @@ <h2>Changes between SPARQL 1.1 Query Language and SPARQL 1.2 Query Language</h2>
<li>Migrate XML Schema references to 1.1</li>
<li>Update references to XPath from 2.0 to 3.1</li>
<li>Define `EBV` as a functional form.</li>
<li>Forbid duplicated variables in `VALUES`.</li>
</ul>
</li>
<li>
Expand Down
Loading