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

Function clone_error

datafusion/physical-plan/src/test/exec.rs:275–281  ·  view source on GitHub ↗
(e: &DataFusionError)

Source from the content-addressed store, hash-verified

273}
274
275fn clone_error(e: &DataFusionError) -> DataFusionError {
276 use DataFusionError::*;
277 match e {
278 Execution(msg) => Execution(msg.to_string()),
279 _ => unimplemented!(),
280 }
281}
282
283/// A Mock ExecutionPlan that does not start producing input until a
284/// barrier is called

Callers 2

executeMethod · 0.85
partition_statisticsMethod · 0.85

Calls 1

to_stringMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…