From 10f4dbb0a29cdbe0e3e302b1d4f45348cd837c82 Mon Sep 17 00:00:00 2001 From: xtcyclist <7731943+xtcyclist@users.noreply.github.com> Date: Thu, 14 Jul 2022 00:11:24 +0800 Subject: [PATCH] add missing header files in two test cases. --- src/common/datatypes/test/ValueTest.cpp | 1 + src/common/graph/tests/ResponseEncodeDecodeTest.cpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/common/datatypes/test/ValueTest.cpp b/src/common/datatypes/test/ValueTest.cpp index 5cfe18c76b1..91d21b64012 100644 --- a/src/common/datatypes/test/ValueTest.cpp +++ b/src/common/datatypes/test/ValueTest.cpp @@ -16,6 +16,7 @@ #include "common/datatypes/Path.h" #include "common/datatypes/Set.h" #include "common/datatypes/Value.h" +#include "common/datatypes/ValueOps-inl.h" #include "common/datatypes/Vertex.h" namespace nebula { diff --git a/src/common/graph/tests/ResponseEncodeDecodeTest.cpp b/src/common/graph/tests/ResponseEncodeDecodeTest.cpp index 1365f2b7f4d..e20ab259b5a 100644 --- a/src/common/graph/tests/ResponseEncodeDecodeTest.cpp +++ b/src/common/graph/tests/ResponseEncodeDecodeTest.cpp @@ -8,6 +8,9 @@ #include +#include "common/datatypes/CommonCpp2Ops.h" +#include "common/graph/AuthResponseOps-inl.h" +#include "common/graph/ExecutionResponseOps-inl.h" #include "common/graph/GraphCpp2Ops.h" #include "common/graph/Response.h"