File tree 1 file changed +3
-6
lines changed
datafusion/core/src/execution
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -104,11 +104,11 @@ use uuid::Uuid;
104
104
/// # #[tokio::main]
105
105
/// # async fn main() -> Result<()> {
106
106
/// let state = SessionStateBuilder::new()
107
- /// .with_config(SessionConfig::new())
107
+ /// .with_config(SessionConfig::new())
108
108
/// .with_runtime_env(Arc::new(RuntimeEnv::default()))
109
109
/// .with_default_features()
110
110
/// .build();
111
- /// Ok(())
111
+ /// Ok(())
112
112
/// # }
113
113
/// ```
114
114
///
@@ -876,10 +876,7 @@ impl SessionState {
876
876
}
877
877
878
878
/// set the catalog list
879
- pub ( crate ) fn register_catalog_list (
880
- & mut self ,
881
- catalog_list : Arc < dyn CatalogProviderList > ,
882
- ) {
879
+ pub fn register_catalog_list ( & mut self , catalog_list : Arc < dyn CatalogProviderList > ) {
883
880
self . catalog_list = catalog_list;
884
881
}
885
882
You can’t perform that action at this time.
0 commit comments