Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::common::pruning - Rust
[go: Go Back, main page]

Module pruning

Source

Structs§

CompositePruningStatistics
Combine multiple PruningStatistics into a single CompositePruningStatistics. This can be used to combine statistics from different sources, for example partition values and file statistics. This allows pruning with filters that depend on multiple sources of statistics, such as WHERE partition_col = data_col. This is done by iterating over the statistics and returning the first one that has information for the requested column. If multiple statistics have information for the same column, the first one is returned without any regard for completeness or accuracy. That is: if the first statistics has information for a column, even if it is incomplete, that is returned even if a later statistics has more complete information.
PartitionPruningStatistics
Prune files based on their partition values.
PrunableStatistics
Prune a set of containers represented by their statistics.

Traits§

PruningStatistics
A source of runtime statistical information to PruningPredicates.