Skip to content

Commit

Permalink
add tck
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwener committed Jan 18, 2022
1 parent b93a399 commit 4770ef0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/graph/planner/SequentialPlanner.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
#ifndef GRAPH_PLANNER_PLANNERS_SEQUENTIALPLANNER_H_
#define GRAPH_PLANNER_PLANNERS_SEQUENTIALPLANNER_H_

#include <memory>

#include "graph/context/QueryContext.h"
#include "graph/planner/Planner.h"

Expand Down
2 changes: 0 additions & 2 deletions src/graph/validator/Validator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

#include <thrift/lib/cpp/util/EnumUtils.h>

#include <set>

#include "common/function/FunctionManager.h"
#include "graph/planner/plan/PlanNode.h"
#include "graph/planner/plan/Query.h"
Expand Down
10 changes: 10 additions & 0 deletions tests/tck/job/Job.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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"}) |

0 comments on commit 4770ef0

Please sign in to comment.