Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
Fix compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
CPWstatic committed Jul 21, 2021
1 parent 4763e9b commit ec03f6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/planner/ngql/GoPlanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ PlanNode* GoPlanner::trackStartVid(PlanNode* left, PlanNode* right) {
* | |
* Left Project
* |
* GetVertices
* GetVertices
* |
* Dep
*/
Expand Down Expand Up @@ -330,7 +330,7 @@ PlanNode* GoPlanner::buildLastStepJoinPlan(PlanNode* gn, PlanNode* join) {
auto* dep = extractSrcEdgePropsFromGN(gn, gn->outputVar());
dep = goCtx_->joinDst ? buildJoinDstPlan(dep, dep) : dep;

PlanNode* left;
PlanNode* left = nullptr;
if (goCtx_->joinInput && join != nullptr) {
left = StartNode::make(goCtx_->qctx);
left->setOutputVar(join->outputVar());
Expand Down

0 comments on commit ec03f6c

Please sign in to comment.