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

Method run

datafusion-examples/examples/proto/main.rs:58–74  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

56 }
57
58 async fn run(&self) -> Result<()> {
59 match self {
60 ExampleKind::All => {
61 for example in ExampleKind::runnable() {
62 println!("Running example: {example}");
63 Box::pin(example.run()).await?;
64 }
65 }
66 ExampleKind::ComposedExtensionCodec => {
67 composed_extension_codec::composed_extension_codec().await?
68 }
69 ExampleKind::ExpressionDeduplication => {
70 expression_deduplication::expression_deduplication().await?
71 }
72 }
73 Ok(())
74 }
75}
76
77#[tokio::main]

Callers 1

mainFunction · 0.45

Calls 2

composed_extension_codecFunction · 0.85
expression_deduplicationFunction · 0.85

Tested by

no test coverage detected