Skip to content

Commit

Permalink
Merge all executor tests (vesoft-inc#249)
Browse files Browse the repository at this point in the history
Co-authored-by: dutor <[email protected]>
  • Loading branch information
yixinglu and dutor authored Sep 2, 2020
1 parent fe7f894 commit 9a0d808
Show file tree
Hide file tree
Showing 15 changed files with 10 additions and 73 deletions.
3 changes: 1 addition & 2 deletions src/executor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,4 @@ nebula_add_library(
admin/ConfigExecutor.cpp
)

nebula_add_subdirectory(query/test)
nebula_add_subdirectory(logic/test)
nebula_add_subdirectory(test)
62 changes: 0 additions & 62 deletions src/executor/logic/test/CMakeLists.txt

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# attached with Common Clause Condition 1.0, found in the LICENSES directory.

SET(EXEC_QUERY_TEST_OBJS
$<TARGET_OBJECTS:common_time_function_obj>
$<TARGET_OBJECTS:common_expression_obj>
$<TARGET_OBJECTS:common_network_obj>
$<TARGET_OBJECTS:common_process_obj>
Expand All @@ -15,12 +14,12 @@ SET(EXEC_QUERY_TEST_OBJS
$<TARGET_OBJECTS:common_meta_client_obj>
$<TARGET_OBJECTS:common_stats_obj>
$<TARGET_OBJECTS:common_time_obj>
$<TARGET_OBJECTS:common_time_function_obj>
$<TARGET_OBJECTS:common_meta_thrift_obj>
$<TARGET_OBJECTS:common_common_thrift_obj>
$<TARGET_OBJECTS:common_thrift_obj>
$<TARGET_OBJECTS:common_meta_obj>
$<TARGET_OBJECTS:common_thread_obj>
$<TARGET_OBJECTS:common_time_obj>
$<TARGET_OBJECTS:common_fs_obj>
$<TARGET_OBJECTS:common_base_obj>
$<TARGET_OBJECTS:common_concurrent_obj>
Expand Down Expand Up @@ -57,8 +56,9 @@ SET(EXEC_QUERY_TEST_LIBS

nebula_add_test(
NAME
query_executors_test
executor_test
SOURCES
LogicExecutorsTest.cpp
ProjectTest.cpp
GetNeighborsTest.cpp
DataCollectTest.cpp
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "context/QueryContext.h"
#include "planner/Query.h"
#include "executor/query/DataJoinExecutor.h"
#include "executor/query/test/QueryTestBase.h"
#include "executor/test/QueryTestBase.h"

namespace nebula {
namespace graph {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "context/QueryContext.h"
#include "planner/Query.h"
#include "executor/query/DedupExecutor.h"
#include "executor/query/test/QueryTestBase.h"
#include "executor/test/QueryTestBase.h"
#include "executor/query/ProjectExecutor.h"

namespace nebula {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "context/QueryContext.h"
#include "executor/query/FilterExecutor.h"
#include "executor/query/ProjectExecutor.h"
#include "executor/query/test/QueryTestBase.h"
#include "executor/test/QueryTestBase.h"
#include "planner/Query.h"
#include "util/ExpressionUtils.h"

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "context/QueryContext.h"
#include "executor/query/LimitExecutor.h"
#include "executor/query/ProjectExecutor.h"
#include "executor/query/test/QueryTestBase.h"
#include "executor/test/QueryTestBase.h"
#include "planner/Logic.h"
#include "planner/Query.h"
#include "util/ExpressionUtils.h"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "context/QueryContext.h"
#include "executor/query/ProjectExecutor.h"
#include "executor/query/test/QueryTestBase.h"
#include "executor/test/QueryTestBase.h"
#include "planner/Logic.h"
#include "planner/Query.h"

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "context/QueryContext.h"
#include "executor/query/ProjectExecutor.h"
#include "executor/query/SortExecutor.h"
#include "executor/query/test/QueryTestBase.h"
#include "executor/test/QueryTestBase.h"
#include "planner/Logic.h"
#include "planner/Query.h"

Expand Down

0 comments on commit 9a0d808

Please sign in to comment.