From 9f2e98b0a9a2b55666794eef7bfcedbe49d354e9 Mon Sep 17 00:00:00 2001 From: codesigner Date: Wed, 7 Dec 2022 14:55:09 +0800 Subject: [PATCH] fix tck --- tests/tck/features/match/PathExpr.feature | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/tck/features/match/PathExpr.feature b/tests/tck/features/match/PathExpr.feature index 41286a192db..d4366d179c6 100644 --- a/tests/tck/features/match/PathExpr.feature +++ b/tests/tck/features/match/PathExpr.feature @@ -50,22 +50,22 @@ Feature: Basic match """ MATCH (v:player) WITH (v)-[v]-() AS p RETURN p """ - Then a SemanticError should be raised at runtime: Alias `v' should be Edge. + Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node' When executing query: """ MATCH (v:player) UNWIND (v)-[v]-() AS p RETURN p """ - Then a SemanticError should be raised at runtime: Alias `v' should be Edge. + Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node' When executing query: """ MATCH (v:player) WHERE (v)-[v]-() RETURN v """ - Then a SemanticError should be raised at runtime: Alias `v' should be Edge. + Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node' When executing query: """ MATCH (v:player) RETURN (v)-[v]-() """ - Then a SemanticError should be raised at runtime: Alias `v' should be Edge. + Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node' Scenario: In Where When executing query: