andygrove commented on issue #5942:
URL: 
https://github.com/apache/arrow-datafusion/issues/5942#issuecomment-1505555862

   > Maybe it is a new feature ?
   
   Yes, sorry .. the `set` feature is not yet released. However, you can also 
pass a dict into the SessionConfig constructor, like this:
   
   ```python
   config = (
       SessionConfig({ 'datafusion.execution.parquet.pushdown_filters': 'true' 
})
       .with_create_default_catalog_and_schema(True)
       .with_default_catalog_and_schema("foo", "bar")
       .with_target_partitions(8)
       .with_information_schema(True)
       .with_repartition_joins(False)
       .with_repartition_aggregations(False)
       .with_repartition_windows(False)
       .with_parquet_pruning(False)
   )
   ```
   


-- 
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]

Reply via email to