Skip to content

Commit 8306d1a

Browse files
authored
Merge pull request #57 from cdusovic/master
Fix compliance assertions
2 parents af848d6 + bf5866d commit 8306d1a

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

examples/compliance/cmpl_bql_graph_clauses.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
SELECT ?name_1, ?name_2
5959
FROM ?g
6060
WHERE {
61-
/u<joe> \"parent_of\"@[] ?c ID ?name_1 .
62-
/u<joe> \"parent_of\"@[] ?c ID ?name_2
61+
/u<joe> \"parent_of\"@[] ?c1 ID ?name_1 .
62+
/u<joe> \"parent_of\"@[] ?c2 ID ?name_2
6363
}
6464
ORDER BY ?name_1 ASC, ?name_2 ASC;",
6565
"WillFail": false,
@@ -89,8 +89,8 @@
8989
FROM ?g
9090
WHERE {
9191
/u<joe> \"parent_of\"@[] ?c .
92-
?c \"parent_of\"@[] ?gc ID ?name_1 .
93-
?c \"parent_of\"@[] ?gc ID ?name_2
92+
?c \"parent_of\"@[] ?gc1 ID ?name_1 .
93+
?c \"parent_of\"@[] ?gc2 ID ?name_2
9494
}
9595
ORDER BY ?name_1 ASC, ?name_2 ASC;",
9696
"WillFail": false,
@@ -164,8 +164,8 @@
164164
FROM ?g
165165
WHERE {
166166
/u<joe> \"parent_of\"@[] ?c .
167-
?c \"parent_of\"@[] ?gc ID ?name_1 .
168-
?c \"parent_of\"@[] ?gc ID ?name_2
167+
?c \"parent_of\"@[] ?gc1 ID ?name_1 .
168+
?c \"parent_of\"@[] ?gc2 ID ?name_2
169169
}
170170
ORDER BY ?name_1 ASC, ?name_2 ASC
171171
HAVING NOT(?name_1 = ?name_2);",
@@ -188,8 +188,8 @@
188188
FROM ?g
189189
WHERE {
190190
/u<joe> \"parent_of\"@[] ?c .
191-
?c \"parent_of\"@[] ?gc ID ?name_1 .
192-
?c \"parent_of\"@[] ?gc ID ?name_2
191+
?c \"parent_of\"@[] ?gc1 ID ?name_1 .
192+
?c \"parent_of\"@[] ?gc2 ID ?name_2
193193
}
194194
ORDER BY ?name_1 ASC, ?name_2 ASC
195195
HAVING ?name_1 < ?name_2;",

0 commit comments

Comments
 (0)