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

Method addSubqueryGraph

src/include/binder/query/query_graph.h:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 void addQueryNode(common::idx_t nodePos) { queryNodesSelector[nodePos] = true; }
33 void addQueryRel(common::idx_t relPos) { queryRelsSelector[relPos] = true; }
34 void addSubqueryGraph(const SubqueryGraph& other) {
35 queryRelsSelector |= other.queryRelsSelector;
36 queryNodesSelector |= other.queryNodesSelector;
37 }
38
39 common::idx_t getNumQueryRels() const { return queryRelsSelector.count(); }
40 common::idx_t getTotalNumVariables() const {

Callers 2

planInnerHashJoinMethod · 0.80
constructTreeNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected