From fbfebf1cf9d30bbe77dc304d0caba64e1dc0cea7 Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Tue, 21 Dec 2021 14:30:55 +0800 Subject: [PATCH] [skip e2e] Reorder header files for query/PlanProto.cpp (#13851) Signed-off-by: yudong.cai --- internal/core/src/query/PlanProto.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/internal/core/src/query/PlanProto.cpp b/internal/core/src/query/PlanProto.cpp index dc2fa647ad..9037172e4c 100644 --- a/internal/core/src/query/PlanProto.cpp +++ b/internal/core/src/query/PlanProto.cpp @@ -9,11 +9,12 @@ // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express // or implied. See the License for the specific language governing permissions and limitations under the License -#include "query/PlanProto.h" -#include "ExprImpl.h" #include -#include -#include "query/generated/ExtractInfoExprVisitor.h" + +#include "ExprImpl.h" +#include "PlanProto.h" +#include "generated/ExtractInfoExprVisitor.h" +#include "generated/ExtractInfoPlanNodeVisitor.h" namespace milvus::query { namespace planpb = milvus::proto::plan;