alamb opened a new issue, #9908:
URL: https://github.com/apache/arrow-datafusion/issues/9908
### Is your feature request related to a problem or challenge?
In InfluxDB 3.0 we have several places in our code that we make new
`ParquetExec`s from existing `ParquetExec`s
Something like this:
```rust
let new_node = Arc::new(FilterExec::try_new(
Arc::clone(filter_exec.predicate()),
Arc::new(ParquetExec::new(. // <--
Making a new ParquetExec
child_parquet.base_config().clone(), // <--
based on child_parquet
both,
None,
table_parquet_options(), // <-- PROBLEM no way
to get the child_parquet's TableParquetOptions
)),
)?);
```
### Describe the solution you'd like
I would like a way to get access to `TableParquetOptions` so we create a
faithful replica
### Describe alternatives you've considered
_No response_
### Additional context
_No response_
--
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]