You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix missing field partitioned_by_file_group in serialization (apache#22365)
I'm not super versed in the serialization machinery involved here,
please review carefully.
## Which issue does this PR close?
- Closesapache#22363.
## Rationale for this change
The partitioned_by_file_group field was introduced in apache#21351 and apache#21342
but not added to the protobuf schema, breaking `datafusion-distributed`.
## What changes are included in this PR?
- Add optional `bool partitioned_by_file_group = 14` to
`FileScanExecConf` in `datafusion.proto`
- Serialize the field in `to_proto.rs`
- Deserialize the field in `from_proto.rs`
- Regenerate prost/pbjson code
## Are these changes tested?
Yes, added roundtrip_parquet_exec_partitioned_by_file_group test.
## Are there any user-facing changes?
No
0 commit comments