Skip to content

Commit de0590c

Browse files
committed
Revert bits
1 parent 9b3b641 commit de0590c

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

datafusion/core/src/datasource/file_format/options.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,6 @@ impl ReadOptions<'_> for ParquetReadOptions<'_> {
588588
.with_target_partitions(config.target_partitions())
589589
.with_table_partition_cols(self.table_partition_cols.clone())
590590
.with_file_sort_order(self.file_sort_order.clone())
591-
.with_collect_stat(config.collect_statistics())
592591
}
593592

594593
async fn get_resolved_schema(

datafusion/core/tests/sql/explain_analyze.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,8 +561,7 @@ async fn csv_explain_verbose_plans() {
561561
async fn explain_analyze_runs_optimizers(#[values("*", "1")] count_expr: &str) {
562562
// repro for https://github.com/apache/datafusion/issues/917
563563
// where EXPLAIN ANALYZE was not correctly running optimizer
564-
let cfg = SessionConfig::new().with_collect_statistics(true);
565-
let ctx = SessionContext::new_with_config(cfg);
564+
let ctx = SessionContext::new();
566565
register_alltypes_parquet(&ctx).await;
567566

568567
// This happens as an optimization pass where count(*)/count(1) can be

datafusion/datasource-parquet/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ tokio = { workspace = true }
5858
[dev-dependencies]
5959
chrono = { workspace = true }
6060

61-
[features]
62-
backtrace = ["datafusion-common/backtrace"]
63-
6461
[lints]
6562
workspace = true
6663

0 commit comments

Comments
 (0)