Skip to content

Commit

Permalink
add subgraph input (#5299)
Browse files Browse the repository at this point in the history
  • Loading branch information
nevermore3 authored Feb 2, 2023
1 parent 39801b3 commit 7098d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/planner/plan/Algo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void CrossJoin::accept(PlanNodeVisitor* visitor) {
CrossJoin::CrossJoin(QueryContext* qctx) : BinaryInputNode(qctx, Kind::kCrossJoin) {}

std::unique_ptr<PlanNodeDescription> Subgraph::explain() const {
auto desc = SingleDependencyNode::explain();
auto desc = SingleInputNode::explain();
addDescription("src", src_ ? src_->toString() : "", desc.get());
addDescription("tag_filter", tagFilter_ ? tagFilter_->toString() : "", desc.get());
addDescription("edge_filter", edgeFilter_ ? edgeFilter_->toString() : "", desc.get());
Expand Down

0 comments on commit 7098d9a

Please sign in to comment.