Struct datafusion::physical_plan::parquet::ParquetPartition [−][src]
pub struct ParquetPartition { pub filenames: Vec<String>, pub statistics: Statistics, // some fields omitted }
Expand description
Represents one partition of a Parquet data set and this currently means one Parquet file.
In the future it would be good to support subsets of files based on ranges of row groups so that we can better parallelize reads of large files across available cores (see ARROW-10995).
We may also want to support reading Parquet files that are partitioned based on a key and in this case we would want this partition struct to represent multiple files for a given partition key (see ARROW-11019).
Fields
filenames: Vec<String>
The Parquet filename for this partition
statistics: Statistics
Statistics for this partition
Implementations
Create a new parquet partition
Statistics for this partition
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ParquetPartition
impl Send for ParquetPartition
impl Sync for ParquetPartition
impl Unpin for ParquetPartition
impl UnwindSafe for ParquetPartition
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self