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

Method visitUnsafe

src/binder/bound_statement_visitor.cpp:93–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93void BoundStatementVisitor::visitUnsafe(BoundStatement& statement) {
94 switch (statement.getStatementType()) {
95 case StatementType::QUERY: {
96 visitRegularQueryUnsafe(statement);
97 } break;
98 default:
99 break;
100 }
101}
102
103void BoundStatementVisitor::visitCopyFrom(const BoundStatement& statement) {
104 auto& copyFrom = dynamic_cast_checked<const BoundCopyFrom&>(statement);

Callers 1

rewriteMethod · 0.45

Calls 1

getStatementTypeMethod · 0.45

Tested by

no test coverage detected