File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -40,4 +40,5 @@ trs:manifest rdf:type mf:Manifest ;
4040 <expression/manifest.ttl>
4141 <lang-basedir/manifest.ttl>
4242 <rdf11/manifest.ttl>
43+ <syntax/manifest.ttl>
4344 ) .
Original file line number Diff line number Diff line change 1+ SELECT * WHERE { VALUES (?a ?a) { (1 1) } }
Original file line number Diff line number Diff line change 1+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
2+ @prefix : <https://w3c.github.io/rdf-tests/sparql/sparql12/syntax#> .
3+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+ @prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
5+ @prefix qt: <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
6+ @prefix dawgt: <http://www.w3.org/2001/sw/DataAccess/tests/test-dawg#> .
7+
8+ :manifest rdf:type mf:Manifest ;
9+ rdfs:label " Syntax" ;
10+ mf:entries
11+ (
12+ :duplicated-values-variable
13+ ) .
14+
15+ :duplicated-values-variable rdf:type mf:NegativeSyntaxTest ;
16+ mf:name " Duplicated variable in a VALUES clause" ;
17+ mf:action <duplicated-values-variable.rq> .
You can’t perform that action at this time.
0 commit comments