(args: &EnvParser)
| 229 | } |
| 230 | |
| 231 | fn make_ctx(args: &EnvParser) -> Result<SessionContext> { |
| 232 | let config = args.options.config()?; |
| 233 | let rt = args.options.build_runtime()?; |
| 234 | |
| 235 | Ok(SessionContext::new_with_config_rt(config, rt)) |
| 236 | } |
| 237 | |
| 238 | /// Recursively walks the directory tree starting at `path` and |
| 239 | /// calls the call back function for every file encountered. |
no test coverage detected
searching dependent graphs…