Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
qingyan01 authored Apr 18, 2024
2 parents e7d9962 + 494f48b commit 73ff1a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/base/Cord.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#ifndef COMMON_BASE_CORD_H_
#define COMMON_BASE_CORD_H_

#include <stdlib.h>

#include <cstdint>
#include <cstdlib>
#include <functional>
#include <string>

Expand Down
1 change: 1 addition & 0 deletions src/graph/planner/plan/ExecutionPlan.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#ifndef GRAPH_PLANNER_PLAN_EXECUTIONPLAN_H_
#define GRAPH_PLANNER_PLAN_EXECUTIONPLAN_H_

#include <cstdint>
#include <string>

namespace nebula {
Expand Down
4 changes: 4 additions & 0 deletions src/storage/query/ScanEdgeProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ nebula::cpp2::ErrorCode ScanEdgeProcessor::checkAndBuildContexts(const cpp2::Sca

std::vector<cpp2::EdgeProp> returnProps = *req.return_columns_ref();
ret = handleEdgeProps(returnProps);
if (ret != nebula::cpp2::ErrorCode::SUCCEEDED) {
return ret;
}

buildEdgeColName(returnProps);
ret = buildFilter(req, [](const cpp2::ScanEdgeRequest& r, bool onlyTag) -> const std::string* {
UNUSED(onlyTag);
Expand Down

0 comments on commit 73ff1a2

Please sign in to comment.