From babb54763fa7170397a8a7ab0cbf0a8cefc608ed Mon Sep 17 00:00:00 2001 From: CPWstatic <13495049+CPWstatic@users.noreply.github.com> Date: Tue, 28 Dec 2021 11:03:08 +0800 Subject: [PATCH] Fix error msg. --- tests/tck/features/match/MultiQueryParts.feature | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/tck/features/match/MultiQueryParts.feature b/tests/tck/features/match/MultiQueryParts.feature index 7960a072db5..8ba7e4cb4a2 100644 --- a/tests/tck/features/match/MultiQueryParts.feature +++ b/tests/tck/features/match/MultiQueryParts.feature @@ -82,7 +82,7 @@ Feature: Multi Query Parts MATCH (m)-[]-(n), (a)-[]-(c) WHERE id(m)=="Tim Duncan" RETURN m,n,a,c """ - Then a ExecutionError should be raised at runtime: Scan vertices must specify limit number. + Then a ExecutionError should be raised at runtime: Scan vertices or edges need to specify a limit number, or limit number can not push down. Scenario: Multi Match When executing query: @@ -169,7 +169,7 @@ Feature: Multi Query Parts OPTIONAL MATCH (a)<-[]-(b) RETURN m.name AS n1, n.name AS n2, a.name AS n3 ORDER BY n1, n2, n3 LIMIT 10 """ - Then a ExecutionError should be raised at runtime: Scan vertices must specify limit number. + Then a ExecutionError should be raised at runtime: Scan vertices or edges need to specify a limit number, or limit number can not push down. Scenario: Multi Query Parts When executing query: @@ -209,7 +209,7 @@ Feature: Multi Query Parts MATCH (a)-[]-(b) RETURN a.name AS n1, b.name AS n2 ORDER BY n1, n2 LIMIT 10 """ - Then a ExecutionError should be raised at runtime: Scan vertices must specify limit number. + Then a ExecutionError should be raised at runtime: Scan vertices or edges need to specify a limit number, or limit number can not push down. Scenario: Some Erros When executing query: