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

Method bindCreateGraph

src/binder/bind/bind_graph.cpp:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6namespace binder {
7
8std::unique_ptr<BoundStatement> Binder::bindCreateGraph(const parser::Statement& statement) {
9 auto createGraph = statement.constCast<parser::CreateGraph>();
10 return std::make_unique<BoundCreateGraph>(createGraph.getGraphName(), createGraph.isAnyGraph());
11}
12
13std::unique_ptr<BoundStatement> Binder::bindUseGraph(const parser::Statement& statement) {
14 auto useGraph = statement.constCast<parser::UseGraph>();

Callers

nothing calls this directly

Calls 2

getGraphNameMethod · 0.45
isAnyGraphMethod · 0.45

Tested by

no test coverage detected