MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / getQueryRels

Method getQueryRels

src/binder/query/query_graph.cpp:327–335  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

325}
326
327std::vector<std::shared_ptr<RelExpression>> QueryGraphCollection::getQueryRels() const {
328 std::vector<std::shared_ptr<RelExpression>> result;
329 for (auto& queryGraph : queryGraphs) {
330 for (auto& rel : queryGraph.getQueryRels()) {
331 result.push_back(rel);
332 }
333 }
334 return result;
335}
336
337} // namespace binder
338} // namespace lbug

Callers 3

visitSubqueryExprMethod · 0.45
visitMergeMethod · 0.45
rewriteMatchPatternMethod · 0.45

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected