MCPcopy Create free account
hub / github.com/apache/datafusion / control_flow_to_result

Function control_flow_to_result

datafusion/sql/src/resolve.rs:162–167  ·  view source on GitHub ↗
(flow: ControlFlow<DataFusionError>)

Source from the content-addressed store, hash-verified

160}
161
162fn control_flow_to_result(flow: ControlFlow<DataFusionError>) -> Result<()> {
163 match flow {
164 ControlFlow::Continue(()) => Ok(()),
165 ControlFlow::Break(err) => Err(err),
166 }
167}
168
169fn visit_statement(statement: &DFStatement, visitor: &mut RelationVisitor) -> Result<()> {
170 match statement {

Callers 1

visit_statementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…