(mut self, name: impl Into<String>, schema: Schema)
| 855 | } |
| 856 | |
| 857 | fn with_schema(mut self, name: impl Into<String>, schema: Schema) -> Self { |
| 858 | self.tables.insert( |
| 859 | name.into(), |
| 860 | Arc::new(MyTableSource { |
| 861 | schema: Arc::new(schema), |
| 862 | }), |
| 863 | ); |
| 864 | self |
| 865 | } |
| 866 | } |
| 867 | |
| 868 | impl ContextProvider for MyContextProvider { |
no test coverage detected