()
| 478 | } |
| 479 | |
| 480 | fn test_config() -> SessionConfig { |
| 481 | let mut config = SessionConfig::default(); |
| 482 | config.options_mut().catalog.default_catalog = MOCK_CATALOG.to_string(); |
| 483 | config.options_mut().catalog.default_schema = MOCK_SCHEMA.to_string(); |
| 484 | config |
| 485 | } |
| 486 | |
| 487 | #[tokio::test] |
| 488 | async fn test_async_schema_provider_resolve() { |
no test coverage detected
searching dependent graphs…