Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
xtcyclist committed Jan 31, 2023
1 parent 3aa127f commit 253740d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/executor/query/DataCollectExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ Status DataCollectExecutor::collectSubgraph(const std::vector<std::string>& vars
ds.colNames = std::move(colNames_);
const auto& hist = ectx_->getHistory(vars[0]);
for (const auto& result : hist) {
auto iter = result.iter();
if (!result.iterRef()->isGetNeighborsIter()) {
continue;
}
auto iter = result.iter();
auto* gnIter = static_cast<GetNeighborsIter*>(iter.get());
List vertices;
List edges;
Expand Down

0 comments on commit 253740d

Please sign in to comment.