Expose `SinkTypeIR::Partitioned` in the Python node visitor
Open
cudf-polars
- Dominant language
- C++
- Stars
- 9.8k
- Forks
- 1.1k
- Avg merge
- 3d 6m
- Merged PRs (30d)
- 278
Description
This struct contains the information we need in the logical plan to implement partitioned sinks. Specifically in /home/coder/polars/crates/polars-plan/src/dsl/options/sink.rs
```rust
pub struct PartitionedSinkOptionsIR {
pub base_path: PlRefPath,
pub file_path_provider: FileProviderType,
pub partition_strategy: PartitionStrategyIR,
pub file_format: FileWriteFormat,
pub unified_sink_args: UnifiedSinkArgs,
pub max_rows_per_file: IdxSize,
pub approximate_bytes_per_file: u64,
}
```
Contributor guide
Assessment
This issue has not been assessed yet.