Runs the example.
()
| 84 | #[tokio::main] |
| 85 | /// Runs the example. |
| 86 | pub async fn main() { |
| 87 | let my_ctx = MyUnionerContext::default(); |
| 88 | |
| 89 | let mut print_options = PrintOptions { |
| 90 | format: datafusion_cli::print_format::PrintFormat::Automatic, |
| 91 | quiet: false, |
| 92 | maxrows: datafusion_cli::print_options::MaxRows::Unlimited, |
| 93 | color: true, |
| 94 | instrumented_registry: Arc::new(InstrumentedObjectStoreRegistry::new()), |
| 95 | }; |
| 96 | |
| 97 | exec_from_repl(&my_ctx, &mut print_options).await.unwrap(); |
| 98 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…