File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
src/datasource/file_format Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change @@ -561,8 +561,7 @@ async fn csv_explain_verbose_plans() {
561561async 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
Original file line number Diff line number Diff line change @@ -58,9 +58,6 @@ tokio = { workspace = true }
5858[dev-dependencies ]
5959chrono = { workspace = true }
6060
61- [features ]
62- backtrace = [" datafusion-common/backtrace" ]
63-
6461[lints ]
6562workspace = true
6663
You can’t perform that action at this time.
0 commit comments