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

Method default

datafusion/ffi/src/tests/catalog.rs:76–86  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

74
75impl Default for FixedSchemaProvider {
76 fn default() -> Self {
77 let inner = MemorySchemaProvider::new();
78
79 let table = fruit_table();
80
81 let _ = inner
82 .register_table("purchases".to_string(), table)
83 .unwrap();
84
85 Self { inner }
86 }
87}
88
89#[async_trait]

Callers

nothing calls this directly

Calls 6

newFunction · 0.85
fruit_tableFunction · 0.85
register_tableMethod · 0.45
to_stringMethod · 0.45
register_schemaMethod · 0.45
register_catalogMethod · 0.45

Tested by

no test coverage detected