tustvold commented on code in PR #4607:
URL: https://github.com/apache/arrow-datafusion/pull/4607#discussion_r1047634643
##########
datafusion/core/src/catalog/schema.rs:
##########
@@ -35,7 +37,7 @@ pub trait SchemaProvider: Sync + Send {
fn table_names(&self) -> Vec<String>;
/// Retrieves a specific table from the schema by name, provided it exists.
- fn table(&self, name: &str) -> Option<Arc<dyn TableProvider>>;
+ async fn table(&self, name: &str) -> Option<Arc<dyn TableProvider>>;
Review Comment:
And this is the change to support async catalogs
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]