alamb commented on a change in pull request #706:
URL: https://github.com/apache/arrow-datafusion/pull/706#discussion_r668092609
##########
File path: datafusion/src/logical_plan/builder.rs
##########
@@ -147,10 +147,10 @@ impl LogicalPlanBuilder {
pub fn scan_parquet_with_name(
path: impl Into<String>,
projection: Option<Vec<usize>>,
- max_concurrency: usize,
+ max_partitions: usize,
table_name: impl Into<String>,
) -> Result<Self> {
- let provider = Arc::new(ParquetTable::try_new(path, max_concurrency)?);
+ let provider = Arc::new(ParquetTable::try_new(path, max_partitions)?);
Review comment:
I agree it should be decoupled, but I also don't think this PR makes the
coupling any worse -- perhaps we could file a follow on ticket?
--
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]