We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df5626d commit f662acdCopy full SHA for f662acd
datafusion/core/tests/sql/path_partition.rs
@@ -431,7 +431,9 @@ async fn parquet_multiple_nonstring_partitions() -> Result<()> {
431
432
#[tokio::test]
433
async fn parquet_statistics() -> Result<()> {
434
- let ctx = SessionContext::new();
+ let mut config = SessionConfig::new();
435
+ config.options_mut().execution.collect_statistics = true;
436
+ let ctx = SessionContext::new_with_config(config);
437
438
register_partitioned_alltypes_parquet(
439
&ctx,
0 commit comments