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<'_> {
588
588
. with_target_partitions ( config. target_partitions ( ) )
589
589
. with_table_partition_cols ( self . table_partition_cols . clone ( ) )
590
590
. with_file_sort_order ( self . file_sort_order . clone ( ) )
591
- . with_collect_stat ( config. collect_statistics ( ) )
592
591
}
593
592
594
593
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() {
561
561
async fn explain_analyze_runs_optimizers ( #[ values( "*" , "1" ) ] count_expr : & str ) {
562
562
// repro for https://github.com/apache/datafusion/issues/917
563
563
// 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 ( ) ;
566
565
register_alltypes_parquet ( & ctx) . await ;
567
566
568
567
// 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 }
58
58
[dev-dependencies ]
59
59
chrono = { workspace = true }
60
60
61
- [features ]
62
- backtrace = [" datafusion-common/backtrace" ]
63
-
64
61
[lints ]
65
62
workspace = true
66
63
You can’t perform that action at this time.
0 commit comments