From bf5866d0188d9138e2b35049e9509bd2a7915eff Mon Sep 17 00:00:00 2001 From: Christopher Dusovic Date: Thu, 28 Jul 2016 15:04:44 -0700 Subject: [PATCH] Fix compliance assertions --- examples/compliance/cmpl_bql_graph_clauses.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/compliance/cmpl_bql_graph_clauses.json b/examples/compliance/cmpl_bql_graph_clauses.json index 87886818..b422a926 100644 --- a/examples/compliance/cmpl_bql_graph_clauses.json +++ b/examples/compliance/cmpl_bql_graph_clauses.json @@ -58,8 +58,8 @@ SELECT ?name_1, ?name_2 FROM ?g WHERE { - /u \"parent_of\"@[] ?c ID ?name_1 . - /u \"parent_of\"@[] ?c ID ?name_2 + /u \"parent_of\"@[] ?c1 ID ?name_1 . + /u \"parent_of\"@[] ?c2 ID ?name_2 } ORDER BY ?name_1 ASC, ?name_2 ASC;", "WillFail": false, @@ -89,8 +89,8 @@ FROM ?g WHERE { /u \"parent_of\"@[] ?c . - ?c \"parent_of\"@[] ?gc ID ?name_1 . - ?c \"parent_of\"@[] ?gc ID ?name_2 + ?c \"parent_of\"@[] ?gc1 ID ?name_1 . + ?c \"parent_of\"@[] ?gc2 ID ?name_2 } ORDER BY ?name_1 ASC, ?name_2 ASC;", "WillFail": false, @@ -164,8 +164,8 @@ FROM ?g WHERE { /u \"parent_of\"@[] ?c . - ?c \"parent_of\"@[] ?gc ID ?name_1 . - ?c \"parent_of\"@[] ?gc ID ?name_2 + ?c \"parent_of\"@[] ?gc1 ID ?name_1 . + ?c \"parent_of\"@[] ?gc2 ID ?name_2 } ORDER BY ?name_1 ASC, ?name_2 ASC HAVING NOT(?name_1 = ?name_2);", @@ -188,8 +188,8 @@ FROM ?g WHERE { /u \"parent_of\"@[] ?c . - ?c \"parent_of\"@[] ?gc ID ?name_1 . - ?c \"parent_of\"@[] ?gc ID ?name_2 + ?c \"parent_of\"@[] ?gc1 ID ?name_1 . + ?c \"parent_of\"@[] ?gc2 ID ?name_2 } ORDER BY ?name_1 ASC, ?name_2 ASC HAVING ?name_1 < ?name_2;",