pub struct ParquetExec { /* private fields */ }
Expand description

Execution plan for scanning one or more Parquet partitions

Implementations

Create a new Parquet reader execution plan provided file list and schema.

Ref to the base configs

Optional reference to this parquet scan’s pruning predicate

Optional user defined parquet file reader factory.

ParquetFileReaderFactory complements TableProvider, It enables users to provide custom implementation for data access operations.

If custom ParquetFileReaderFactory is provided, then data access operations will be routed to this factory instead of ObjectStore.

Configure ParquetScanOptions

Ref to the ParquetScanOptions

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Return a reference to Any that can be used for downcasting

Get the output partitioning of this plan

Get the schema for this execution plan
Get a list of child execution plans that provide the input for this plan. The returned list will be empty for leaf nodes, will contain a single value for unary nodes, or two values for binary nodes (such as joins). Read more
If the output of this operator is sorted, returns Some(keys) with the description of how it was sorted. Read more
Returns true if this operator relies on its inputs being produced in a certain order (for example that they are sorted a particular way) for correctness. Read more
Returns a new plan where all children were replaced by new plans.
creates an iterator
Format this ExecutionPlan to f in the specified type. Read more
Return a snapshot of the set of Metrics for this ExecutionPlan. Read more
Returns the global output statistics for this ExecutionPlan node.
Specifies the data distribution requirements of all the children for this operator Read more
Returns false if this operator’s implementation may reorder rows within or between partitions. Read more
Returns true if this operator would benefit from partitioning its input (and thus from more parallelism). For operators that do very little work the overhead of extra parallelism may outweigh any benefits Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.