diff --git a/src/graph/planner/SequentialPlanner.h b/src/graph/planner/SequentialPlanner.h index 4f60461ce04..656bede413e 100644 --- a/src/graph/planner/SequentialPlanner.h +++ b/src/graph/planner/SequentialPlanner.h @@ -6,8 +6,6 @@ #ifndef GRAPH_PLANNER_PLANNERS_SEQUENTIALPLANNER_H_ #define GRAPH_PLANNER_PLANNERS_SEQUENTIALPLANNER_H_ -#include - #include "graph/context/QueryContext.h" #include "graph/planner/Planner.h" diff --git a/src/graph/validator/Validator.cpp b/src/graph/validator/Validator.cpp index 34d35c78a67..569ca88bfc5 100644 --- a/src/graph/validator/Validator.cpp +++ b/src/graph/validator/Validator.cpp @@ -7,8 +7,6 @@ #include -#include - #include "common/function/FunctionManager.h" #include "graph/planner/plan/PlanNode.h" #include "graph/planner/plan/Query.h" diff --git a/tests/tck/job/Job.feature b/tests/tck/job/Job.feature index cd41904c8bd..0642575e6be 100644 --- a/tests/tck/job/Job.feature +++ b/tests/tck/job/Job.feature @@ -194,3 +194,13 @@ Feature: Submit job space requirements Then the result should be, in any order: | New Job Id | | /\d+/ | + + Scenario: Sequential sentence + When executing query: + """ + USE nba; + MATCH (n:player) RETURN n LIMIT 1; + """ + Then the result should be, in any order: + | n | + | ("Boris Diaw" :player{age: 36, name: "Boris Diaw"}) |