You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/06/22 14:06:40 UTC

[GitHub] [arrow-datafusion] Ted-Jiang opened a new issue, #2768: Support multiple paths for ListingTableScanNode

Ted-Jiang opened a new issue, #2768:
URL: https://github.com/apache/arrow-datafusion/issues/2768

   **Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
   Now `ListingTableConfig`
   ```
   pub struct ListingTableConfig {
       /// Path on the `ObjectStore` for creating `ListingTable`.
       pub table_path: ListingTableUrl,
       /// Optional `SchemaRef` for the to be created `ListingTable`.
       pub file_schema: Option<SchemaRef>,
       /// Optional `ListingOptions` for the to be created `ListingTable`.
       pub options: Option<ListingOptions>,
   }
   
   ```
   
   Sometimes we need pass multi path in `ListingTableConfig` like after partition prune we only need scan 
   `/table/2020/01` and `/table/2020/03` without  `/table/2020/02`
   So we need pass 
   
   ```
   pub struct ListingTableConfig {
       /// Path on the `ObjectStore` for creating `ListingTable`.
       pub table_path: Vec<ListingTableUrl>,
       /// Optional `SchemaRef` for the to be created `ListingTable`.
       pub file_schema: Option<SchemaRef>,
       /// Optional `ListingOptions` for the to be created `ListingTable`.
       pub options: Option<ListingOptions>,
   }
   
   ```
   **Describe the solution you'd like**
   A clear and concise description of what you want to happen.
   
   **Describe alternatives you've considered**
   A clear and concise description of any alternative solutions or features you've considered.
   
   **Additional context**
   Add any other context or screenshots about the feature request here.
   


-- 
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: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] alamb closed issue #2768: Support multiple paths for ListingTableScanNode

Posted by GitBox <gi...@apache.org>.
alamb closed issue #2768: Support multiple paths for ListingTableScanNode
URL: https://github.com/apache/arrow-datafusion/issues/2768


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org