MCPcopy Create free account
hub / github.com/apache/datafusion / with_enable_pruning

Method with_enable_pruning

datafusion/datasource-parquet/src/file_format.rs:155–158  ·  view source on GitHub ↗

Activate statistics based row group level pruning - If `None`, defaults to value on `config_options`

(mut self, enable: bool)

Source from the content-addressed store, hash-verified

153 /// Activate statistics based row group level pruning
154 /// - If `None`, defaults to value on `config_options`
155 pub fn with_enable_pruning(mut self, enable: bool) -> Self {
156 self.options.global.pruning = enable;
157 self
158 }
159
160 /// Return `true` if pruning is enabled
161 pub fn enable_pruning(&self) -> bool {

Callers 9

query_parquetFunction · 0.80
run_instrumented_queryFunction · 0.80
parquet_exec_visitorFunction · 0.80
dataframe_to_s3Function · 0.80
setup_contextFunction · 0.80
to_listing_optionsMethod · 0.80
write_table_resultsFunction · 0.80
run_queryFunction · 0.80
datafusionFunction · 0.80

Calls

no outgoing calls

Tested by 1

run_queryFunction · 0.64